ASP.NET Global Application_Error事件中访问Session报错 解决

报错信息:会话状态在此上下文中不可用

protected void Application_Error(object sender, EventArgs e)

 {

//以此判断是否可用Session

bool HadInitSession = (sender as HttpApplication).Context.Session == null ? false : true;

//

.......

}

原文地址:https://www.cnblogs.com/shouwu/p/4737386.html