当我点击浏览器的后退按钮时,我仍然会回到页面

时间:2013-03-30 10:22:43

标签: c# asp.net

我在Logout Button上使用了Session.Abandon(); Session.Clear();并重定向到了Login页面。 但 当我点击浏览器的后退按钮时,我仍然会回到页面。

2 个答案:

答案 0 :(得分:1)

因为它是从缓存中提取页面,所以您可能希望为这些相应的页面禁用缓存。

有些人要求禁用后退按钮,无法禁用后退按钮。替代方案是:

  • 防止缓存这些页面
  • 一旦用户退出应用程序,阻止用户返回。

对于第二种情况,请查看以下代码并将其放入登录页面。

<script type = "text/javascript" >
function changeHashOnLoad() {
 window.location.href += "#";
 setTimeout("changeHashAgain()", "50"); 
}

function changeHashAgain() {
 window.location.href += "1";
}

var storedHash = window.location.hash;
window.setInterval(function () {
if (window.location.hash != storedHash) {
     window.location.hash = storedHash;
}
}, 50);


 </script>

并在下面调用它:

<body onload="changeHashOnLoad(); ">
 //---Rest of your code

它可以在所有浏览器中使用。

来源:SO(没有原始帖子的链接)

答案 1 :(得分:0)

您可以使用如下的使用

FormsAuthentication.SignOut();
Session.Abandon();

 // clear authentication cookie
 HttpCookie cookie1 = new HttpCookie(FormsAuthentication.FormsCookieName, "");
 cookie1.Expires = DateTime.Now.AddYears(-1);
 Response.Cookies.Add(cookie1);

// clear session cookie (not necessary for your current problem but i would recommend you do it anyway)

HttpCookie cookie2 = new HttpCookie("ASP.NET_SessionId", "");
cookie2.Expires = DateTime.Now.AddYears(-1);
Response.Cookies.Add(cookie2);

FormsAuthentication.RedirectToLoginPage();