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;
//
.......
}

浙公网安备 33010602011771号