web-dev-qa-db-ja.com

asp.netで永続的なCookieを作成する方法は?

私は次の行でクッキーを作成しています:

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

さて、永続化する方法は?

ブラウザーを閉じた後に同じページに再度アクセスすると、元に戻せないためです。

69
Vikas

以下にその方法を示します。

永続的なCookieの書き込み

//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.
}
95

受け入れられた答えは正しいものの、元のコードが機能しなかった理由を述べていません。

あなたの質問からの悪いコード:

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

2行目を見てください。有効期限は、デフォルトの1/1/0001を含むExpiresプロパティに基づいています。上記のコードは、1/1/0002と評価されています。さらに、評価はプロパティに保存されません。代わりに、Expiresプロパティを現在の日付に基づいて設定する必要があります。

修正されたコード:

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

FWIWは、暗号化されていないCookieにユーザーIDのようなものを保存する際には非常に注意してください。これを行うと、ユーザーが別のユーザーになりすますことができるCookieポイズニングが発生しやすくなります。このようなことを検討している場合は、フォーム認証Cookieを直接使用することを強くお勧めします。

bool persist = true;

var cookie = FormsAuthentication.GetAuthCookie(loginUser.ContactId, persist);

cookie.Expires = DateTime.Now.AddMonths(3);

var ticket = FormsAuthentication.Decrypt(cookie.Value);

var userData = "store any string values you want inside the ticket
                 extra than user id that will be encrypted"

var newTicket = new FormsAuthenticationTicket(ticket.Version, ticket.Name,
     ticket.IssueDate, ticket.Expiration, ticket.IsPersistent, userData);

cookie.Value = FormsAuthentication.Encrypt(newTicket);

Response.Cookies.Add(cookie);

その後、ASP.NETページからいつでもこれを読むことができます。

string userId = null;
if (this.Context.User.Identity.IsAuthenticated) 
{
    userId = this.Context.User.Identity.Name;
}
26
Chris Marisic

ASP.NET認証を使用し、Cookieを永続的に設定するには、FormsAuthenticationTicket.IsPersistent = trueを設定する必要があります。これが主な考え方です。

bool isPersisted = true;
var authTicket = new FormsAuthenticationTicket(
1,
user_name, 
DateTime.Now,
DateTime.Now.AddYears(1),//Expiration (you can set it to 1 year)
isPersisted,//THIS IS THE MAIN FLAG
addition_data);
    HttpCookie authCookie = new HttpCookie(FormsAuthentication.FormsCookieName, authTicket );
    if (isPersisted)
        authCookie.Expires = authTicket.Expiration;

HttpContext.Current.Response.Cookies.Add(authCookie);
2
Kate

これを最後の行として追加する必要があります...

HttpContext.Current.Response.Cookies.Add(userid);

Cookieの値を読み取る必要がある場合、次のような方法を使用します。

    string cookieUserID= String.Empty;

    try
    {
        if (HttpContext.Current.Request.Cookies["userid"] != null)
        {
            cookieUserID = HttpContext.Current.Request.Cookies["userid"];
        }
    }
    catch (Exception ex)
    {
       //handle error
    }

    return cookieUserID;
0
Robert Williams

// Cookieを追加します

var panelIdCookie = new HttpCookie("panelIdCookie");
panelIdCookie.Values.Add("panelId", panelId.ToString(CultureInfo.InvariantCulture));
panelIdCookie.Expires = DateTime.Now.AddMonths(2); 
Response.Cookies.Add(panelIdCookie);

//クッキーを読む

    var httpCookie = Request.Cookies["panelIdCookie"];
                if (httpCookie != null)
                {
                    panelId = Convert.ToInt32(httpCookie["panelId"]);
                }
0
Diganta Kumar