here is the Code for setting the authentication Cookies..
#region "Set authentication Cookie" FormsAuthenticationTicket ticketuser = new FormsAuthenticationTicket(1, strEmail, DateTime.Now, DateTime.Now.AddMinutes(30), false, "Subscriber", FormsAuthentication.FormsCookiePath); string hash = FormsAuthentication.Encrypt(ticketuser); HttpCookie cookie = new HttpCookie(FormsAuthentication.FormsCookieName, hash); if (ticketuser.IsPersistent) { cookie.Expires = ticketuser.Expiration; } Response.Cookies.Add(cookie); #endregion
Response.Redirect("Default.aspx");
Regards Anil Pandey
|
No responses found. Be the first to respond and make money from revenue sharing program.
|