Hi,
If a user checks (chkPersistCookie.Checked) when logging in,
I would like to make it so it never expires
(always logged in)
I'm not sure what "ck.Expires = tkt.Expiration;" is doing.
Would the code below make it so the user is always logged in (if chkPersistCookie.Checked is checked). thanks
FormsAuthenticationTicket tkt;
string cookiestr;
HttpCookie ck;
tkt = new FormsAuthenticationTicket(1, "Test", DateTime.Now,
DateTime.Now.AddMinutes(120), chkPersistCookie.Checked, "your custom data");
cookiestr = FormsAuthentication.Encrypt(tkt);
ck = new HttpCookie(FormsAuthentication.FormsCookieName, cookiestr);
if (chkPersistCookie.Checked)
ck.Expires = tkt.Expiration;
ck.Path = FormsAuthentication.FormsCookiePath;
Response.Cookies.Add(ck);
Response.Redirect("Main.aspx", true);
If a user checks (chkPersistCookie.Checked) when logging in,
I would like to make it so it never expires
(always logged in)
I'm not sure what "ck.Expires = tkt.Expiration;" is doing.
Would the code below make it so the user is always logged in (if chkPersistCookie.Checked is checked). thanks
FormsAuthenticationTicket tkt;
string cookiestr;
HttpCookie ck;
tkt = new FormsAuthenticationTicket(1, "Test", DateTime.Now,
DateTime.Now.AddMinutes(120), chkPersistCookie.Checked, "your custom data");
cookiestr = FormsAuthentication.Encrypt(tkt);
ck = new HttpCookie(FormsAuthentication.FormsCookieName, cookiestr);
if (chkPersistCookie.Checked)
ck.Expires = tkt.Expiration;
ck.Path = FormsAuthentication.FormsCookiePath;
Response.Cookies.Add(ck);
Response.Redirect("Main.aspx", true);