当前位置: 代码迷 >> Web前端 >> 不用缓存
  详细解决方案

不用缓存

热度:126   发布时间:2012-11-22 00:16:41.0
不要缓存

不要缓存
<%
response.addHeader("Cache-Control","no-cache");
response.addHeader("Expires","Thu,01 Jan 1970 00:00:01 GMT");
%>

?


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

  相关解决方案