如何实现退出后按键盘上的后台按钮或前进按钮不能登录网站
你在项目里退出登录,消除Session或Cookie后,按键盘上的后退按钮或前进按钮还可以进入到网站里,是什么问题,有什么好的方法能解决这个问题吗!!谢谢....... --------------------编程问答-------------------- FormsAuthentication.SignOut();Session.Clear();
Session.Abandon();
防止后退
<META content=no-cache>
<META http-equiv=Cache-Control content=no-cache>
<META http-equiv=Expires content=0>
Response.Cache.SetCacheability(System.Web.HttpCacheability.NoCache);
Response.Expires = 0;
Response.Buffer = true;
Response.ExpiresAbsolute = DateTime.Now.AddSeconds(-1);
Response.AddHeader("pragma", "no-cache");
Response.CacheControl = "no-cache";
--------------------编程问答-------------------- 后退按钮或前进按钮是浏览器的历史记录,
http://www.orsoon.com/Article/Article_1035.html
补充:.NET技术 , C#