当会话在回发期间过期时,我想将用户重定向到主页。当表单超时发生时,用户将被定向到登录页面。
会话超时 = 20,表单超时 = 2880
我在 Global.asax 中尝试了以下代码,但不起作用并导致 Application_Error(“响应在此上下文中不可用。”)。
Sub Session_End(ByVal sender As Object, ByVal e As EventArgs)
' Fires when the session ends
Response.Redirect("~/HomePage.aspx")
End Sub