ASP.NET会话变量变为null

本文关键字:null 变量 NET 会话 ASP | 更新日期: 2023-09-27 17:58:59

我的解决方案资源管理器(如果有帮助):https://i.stack.imgur.com/BdhDz.png

当我点击帐户按钮(带有href to account.aspx)时,它会将我重定向到login.aspx,因为它未经授权。

在我的login.aspx.cs上(在他们点击登录后),我有

Session["hi"] = "hello";
HttpCookie cookie = new HttpCookie("username");
cookie.Value = UName.Text;
Response.Cookies.Add(cookie);
System.Web.Security.FormsAuthentication.RedirectFromLoginPage(UName.Text, false);

在account.aspx上,我有

if (Session["hi"] != null)
{
    Literal1.Text = Session["hi"].ToString();
    Literal1.Text += "<br><br><br>";
}

为什么它什么都没显示?我尝试了各种方法来显示这个会话,但没有成功,由于某些原因,会话["hi"]为null。

ASP.NET会话变量变为null

根据上一条注释,您需要将AuthenticationSection.Mode属性设置为mode="Forms"

默认情况下,它是窗口模式。

<authentication mode="Forms">
  <forms loginUrl="~/Login.aspx" 
     timeout="2880" 
     cookieless="UseCookies" />
</authentication>

如何创建主体对象

一旦通过身份验证的用户被请求一个页面,您就需要从cookie中检索身份验证票证,并创建一个Principal对象。

Global.asax.cs

void Application_AuthenticateRequest(object sender, EventArgs e)
{
   HttpCookie decryptedCookie = 
      Context.Request.Cookies[FormsAuthentication.FormsCookieName];
   FormsAuthenticationTicket ticket = 
      FormsAuthentication.Decrypt(decryptedCookie.Value);
   var identity = new GenericIdentity(ticket.Name);
   var principal = new GenericPrincipal(identity, null);
   HttpContext.Current.User = principal;
   Thread.CurrentPrincipal =HttpContext.Current.User;
}

用法

if (User.Identity.IsAuthenticated)
{
}