禁用aspx页面的客户端缓存(防止页面被修改)
程序员文章站
2024-03-05 11:58:30
默认情况下,ie打开一个网页,会在本地进行缓存,这样是为了减少访问服务器的次数提高性能。但有时这也给我们带来了弊端,比如修改信息的页面,在提交修 改后,再次打开次页面,因为...
默认情况下,ie打开一个网页,会在本地进行缓存,这样是为了减少访问服务器的次数提高性能。但有时这也给我们带来了弊端,比如修改信息的页面,在提交修 改后,再次打开次页面,因为url并没有改变,因此ie会读取本地缓存,页面显示的仍然是原始信息,这种情况特别容易出现在弹出对话框或窗口进行修改的方 式。
在asp.net中可以在页面中加入以下内容:
<%@ outputcache location="none" varybyparam="none" %>
或者
放入 html 的 head 部分
<!--禁用缓存部分开始-->
<meta http-equiv="expires" content="0" />
<meta http-equiv="progma" content="no-cache" />
<meta http-equiv="cache-control" content="no-cache,must-revalidate" />
<!--禁用缓存部分结束-->
在asp.net中可以在页面中加入以下内容:
复制代码 代码如下:
<%@ outputcache location="none" varybyparam="none" %>
或者
放入 html 的 head 部分
复制代码 代码如下:
<!--禁用缓存部分开始-->
<meta http-equiv="expires" content="0" />
<meta http-equiv="progma" content="no-cache" />
<meta http-equiv="cache-control" content="no-cache,must-revalidate" />
<!--禁用缓存部分结束-->