首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > CSS >

html/jsp 除了页面缓存

2012-10-09 
html/jsp 去除页面缓存html/jsp 去除页面缓存有两种方法可用1.在html的head标签内加如下内容:meta http-e

html/jsp 去除页面缓存
html/jsp 去除页面缓存


有两种方法可用

1.在html的head标签内加如下内容:

<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />

2.在jsp页面添加如下java代码:

<%  
response.setHeader("Pragma","no-cache");   
response.setHeader("Cache-Control","no-cache");   
response.setDateHeader("Expires", 0);   
%>

热点排行