我想通过不回到以前的页面来保护用户,考虑银行网站中的ex,如果我们点击“返回”按钮,它会显示“警告页面已过期”页面。
在Asp.Net中,该怎么做。
我尝试了以下选项,但它不起作用。
选项1: -
<meta http-equiv="expires" content="0" />
选项2: -
<meta http-equiv="PRAGMA" content="NO-CACHE" />
选项3: - 在Page_Load()
上Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Cache.SetNoStore();
Response.Cache.SetExpires(DateTime.Now.AddMinutes(-1));
提前致谢。
答案 0 :(得分:0)
在解决方案中修改以下行:
Response.Cache.SetCacheability(HttpCacheability.ServerAndNoCache)