1. ホーム
  2. asp.net

ASP.NETで永続的なクッキーを作成するにはどうしたらいいですか?

2023-08-21 02:10:16

質問

私は以下の行でクッキーを作成しています。

HttpCookie userid = new HttpCookie("userid", objUser.id.ToString());
userid.Expires.AddYears(1);
Response.Cookies.Add(userid);

さて、どうすれば永続化できるのでしょうか?

ブラウザを閉じた後、もう一度同じページにアクセスすると、元に戻せません。

どうすればよいのでしょうか。

ここでは、その方法を説明します。

永続的なクッキーを書き込む。

//create a cookie
HttpCookie myCookie = new HttpCookie("myCookie");

//Add key-values in the cookie
myCookie.Values.Add("userid", objUser.id.ToString());

//set cookie expiry date-time. Made it to last for next 12 hours.
myCookie.Expires = DateTime.Now.AddHours(12);

//Most important, write the cookie to client.
Response.Cookies.Add(myCookie);

永続的なクッキーを読み取る。

//Assuming user comes back after several hours. several < 12.
//Read the cookie from Request.
HttpCookie myCookie = Request.Cookies["myCookie"];
if (myCookie == null)
{
    //No cookie found or cookie expired.
    //Handle the situation here, Redirect the user or simply return;
}

//ok - cookie is found.
//Gracefully check if the cookie has the key-value as expected.
if (!string.IsNullOrEmpty(myCookie.Values["userid"]))
{
    string userId = myCookie.Values["userid"].ToString();
    //Yes userId is found. Mission accomplished.
}