报错信息:会话状态在此上下文中不可用
protected void Application_Error(object sender, EventArgs e)
{
//以此判断是否可用Session
bool HadInitSession = (sender as HttpApplication).Context.Session == null ? false : true;
//
.......
}
protected void Application_Error(object sender, EventArgs e)
{
//以此判断是否可用Session
bool HadInitSession = (sender as HttpApplication).Context.Session == null ? false : true;
//
.......
}