指引网

当前位置: 主页 > 网页制作 > WEB开发 >

几种防止页面缓存的有效方法

来源:网络 作者:佚名 点击: 时间:2017-07-19 00:34
[摘要] php网页 header(expires:mon,26jul199705:00:00gmt); header(cache-control:no-cache,must-revalidate); header(pragma:no-cache); jsp网页 response.addheader(pragma, no-cache); html做法 meta http-equiv='pragma' content='no-cache' meta http-equiv='cache

php网页

header("expires:mon,26jul199705:00:00gmt");
header("cache-control:no-cache,must-revalidate");
header("pragma:no-cache");

jsp网页

response.addheader("pragma", "no-cache");

html做法

<meta http-equiv='pragma' content='no-cache'>
<meta http-equiv='cache-control' content='no-cache, must-revalidate'>
<meta http-equiv='expires' content='0'>
<base target="_self">

asp做法

<%  
response.buffer   =   true  
response.expiresabsolute   =   now()   -   1  
response.expires   =   0  
response.cachecontrol   =   "no-cache "  
%> 

 

------分隔线----------------------------