我需要在Visuial Basic Web应用程序中检测会话何时到期。这就是我正在使用的......
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If CurrentSession.IsNew AndAlso (Not Page.Request.Headers("Cookie") Is Nothing) AndAlso (Page.Request.Headers("Cookie").IndexOf("ASP.NET_SessionId") >= 0) Then
Response.Redirect("TimeOut.aspx")
End If
...do something...
End Sub
注意: CurrentSession.IsNew
会返回HttpContext.Current.Session.IsNewSession
这似乎适用于 Internet Explorer ,但似乎因 Firefox 而失败。
答案 0 :(得分:8)
尝试以下
If Session("whatever") IsNot Nothing Then