我想通过不返回以前的页面来保护用户,考虑银行网站中的前任,如果我们单击“返回”按钮,它会显示“警告页面已过期”页面。
在 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));
提前致谢。