gpt4 book ai didi

Global.asax 中的 ASP.NET session

转载 作者:行者123 更新时间:2023-12-04 06:11:41 26 4
gpt4 key购买 nike

session 在 Application_AuthenticateRequest Global.asax 中的方法始终为空。我已经尝试过:

this.Session,HttpContext.Current.Session 

始终为空。
  protected void Application_AuthenticateRequest()
{
string userRole = string.Empty;

if (Request.IsAuthenticated)
{
if (this.Session["UserRole"] == null)
{
InsertSessionValue();
}
userRole =Session["UserRole"].ToString();
HttpContext.Current.User = new GenericPrincipal(User.Identity, new string[] {userRole});
}
}

我也尝试使用缓存,但它不起作用,因为我需要每个用户的唯一信息。

如何在 Global.asax 中使用 Session?每个用户的 HttpApplication 应用程序属性是否唯一?

最佳答案

在请求生命周期的这个时候你不能使用 Session,它还不可用/填充,如果你想使用它,你需要在生命周期的后期移动到一个事件,例如 PostAcquireRequestState .

关于Global.asax 中的 ASP.NET session ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3697334/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com