欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

如何防止IE缓存jsp文件

程序员文章站 2024-02-25 21:27:09
1, 使用java提供的方法,在jsp或者servlet中都可以 <% response.setheader("pragma","no-...
1, 使用java提供的方法,在jsp或者servlet中都可以
<%
response.setheader("pragma","no-cache");
response.setheader("cache-control","no-cache");
response.setdateheader("expires", 0);
%>
2, 使用html标记,如下面:
<head>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
</head>