警告,ASP.Net中的页面过期页面

时间:2012-05-21 12:33:40

标签: asp.net

我想通过不回到以前的页面来保护用户,考虑银行网站中的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));

提前致谢。

1 个答案:

答案 0 :(得分:0)

在解决方案中修改以下行:

Response.Cache.SetCacheability(HttpCacheability.ServerAndNoCache)