1

可能重复:
如何在asp.net中检查会话是否过期

页面检测会话是否在后面的代码中超时的最佳方法是什么?我在博客 ( http://mattslay.com/detecting-session-timeout-in-asp-net/ ) 中找到了以下代码。是好的还是有更好的方法?

if (Context.Session != null && Context.Session.IsNewSession)
{
     string cookieHeader = Page.Request.Headers["Cookie"];
     if ((null != cookieHeader) && (cookieHeader.IndexOf("ASP.NET_SessionId") >= 0))
          return true; // timeout occured
     else
          return false;
}
4

1 回答 1

2

我建议你在你的Global.asax file

void Session_End(object sender, EventArgs e)
{
   //Here you execute your treatments about end session
}

链接:http: //msdn.microsoft.com/en-us/library/system.web.sessionstate.sessionstatemodule.end.aspx

于 2012-10-17T15:00:22.263 回答