1.禁止客户端缓存要在#lt;head#gt;中加入类似如下内容(我当然还没有这么用过):
#lt;META HTTP-EQUIV="pragma" CONTENT="no-cache"#gt;
#lt;META HTTP-EQUIV="Cache-Control" CONTENT="no-cache, must-revalidate"#gt;
#lt;META HTTP-EQUIV="expires" CONTENT="Wed, 26 Feb 1997 08:21:57 GMT"#gt;
2.在服务器的动态网页中禁止缓存,要加入类似如下脚本
(1)asp(好久不用了):
#lt;%
Response.Expires = -1
Response.ExpiresAbsolute = Now() - 1
Response.cachecontrol = "no-cache"
%#gt;
(2)jsp(我现在经常用的):
response.setHeader("Pragma","No-cache");
response.setHeader("Cache-Control","no-cache");
response.setDateHeader("Expires", 0);
消除缓存asp与jsp/html之比较
最新推荐文章于 2021-06-23 10:51:27 发布