我正在按应用程序使用表单身份验证,当表单超时时,应用程序将用户注销到登录页面。
但是当我再次输入我的凭据时,应用程序不允许用户进入。当我在另一个浏览器上尝试它时它工作正常。我认为兑现或 cookie 可能有问题,所以我从浏览器中清除了缓存和 cookie . 但这仍然行不通。
我担心我的代码可能会出错。
有人可以检查一下吗?
非常感谢
protected void ManageRoles(string userid, string role)
{
FormsAuthentication.Initialize();
FormsAuthenticationTicket Authticket = new FormsAuthenticationTicket(1, userid, DateTime.Now, DateTime.Now.AddMinutes(180), true, role, FormsAuthentication.FormsCookieName);
string hash = FormsAuthentication.Encrypt(Authticket);
HttpCookie Authcookie = new HttpCookie(FormsAuthentication.FormsCookieName, hash);
if (Authticket.IsPersistent)
{
Authcookie.Expires = Authticket.Expiration;
Response.Cookies.Add(Authcookie);
}
}
全球.asax
protected void Application_AuthenticateRequest(object sender, EventArgs e)
{
if (HttpContext.Current.User != null)
{
if (HttpContext.Current.User.Identity.IsAuthenticated)
{
if (HttpContext.Current.User.Identity is FormsIdentity)
{
FormsIdentity id = (FormsIdentity)HttpContext.Current.User.Identity;
FormsAuthenticationTicket Authticket = id.Ticket;
string userData = Authticket.UserData;
string[] roles = userData.Split(',');
HttpContext.Current.User = new GenericPrincipal(id, roles);
}
}
}
}