pharaohsprince 发表于 2013-2-6 08:48:16

禁止页面使用缓存~

禁止页面使用缓存~
------------------------------------------------
jsp:页面no cache:

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

html:
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
<META HTTP-EQUIV="Expires" CONTENT=0>
页: [1]
查看完整版本: 禁止页面使用缓存~