可能重复:
如何在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;
}