我有一个 ASP.net 应用程序,我希望用户在其中登录和注销。现在的问题是,当用户按下注销超链接时,他并没有注销。
注销.aspx:
Protected Sub Page_Load(sender As Object, e As System.EventArgs) Handles Me.Load
HttpContext.Current.Response.Cache.SetCacheability(HttpCacheability.NoCache)
HttpContext.Current.Response.Cache.SetNoServerCaching()
HttpContext.Current.Response.Cache.SetNoStore()
Session.RemoveAll()
Session.Abandon()
Response.AddHeader("REFRESH", "10;URL=~/Account/Login.aspx")
End Sub
此代码只是重定向到 Login.aspx,但他仍然处于登录状态!我忘记了可能是什么?
提前致谢!