当前位置: 代码迷 >> JavaScript >> JSP页面缓存技术-怎么禁用浏览器缓存
  详细解决方案

JSP页面缓存技术-怎么禁用浏览器缓存

热度:125   发布时间:2012-10-06 17:34:01.0
JSP页面缓存技术--如何禁用浏览器缓存

在开发中遇到这样的问题:表单在提交后,点击浏览器的后退按钮,又回到原来的表单页面。现想实现在点后退时提示页面过期的效果,实现方式如下:

?

1.在要禁止缓存的页面<head>中加以下脚本:

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

??

2.在要禁止缓存的页面<head>中加以下脚本:

<%    
	response.setHeader("Cache-Control","no-cache"); 
	response.setHeader("Pragma","no-cache"); 
	response.setDateHeader ("Expires", 0); 
%>
?
1 楼 nuaalong 2011-07-22  
这个貌似没用啊
  相关解决方案