LoginSignup
0
1

More than 5 years have passed since last update.

ASP.NETでCookieの有効期限を本日限りに設定

Last updated at Posted at 2017-10-12

開発メモ

//有効期限を設定
var expires = DateTime.Today.AddDays(1);

var cookie = new HttpCookie("hoge")
{
    Value = "本日限り",
    Expires = expires,
    HttpOnly = true
};
HttpContext.Response.Cookies.Add(cookie);

 
FireFoxで確認
image.png

0
1
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1