断根 徐存,预防模式窗心页里没有更新的情形 :
Code:
HTML
<METAHTTP-EQUIV="pragma"CONTENT="no-cache">
<METAHTTP-EQUIV="Cache-Control"CONTENT="no-cache,must-revalidate">
<METAHTTP-EQUIV="expires"CONTENT="Mon, 二 三Jan 一 九 七 八 二0: 五 二: 三0GMT">
ASP
<%
Response.Expires=- 一
Response.ExpiresAbsolute=Now()- 一
Response.cachecontrol="no-cache"
%>
PHP
header("Expires:Mon, 二 六Jul 一 九 九 七0 五:00:00GMT");
header("Cache-Control:no-cache,must-revalidate");
header("Pragma:no-cache");
JSP
response.setHeader("Pragma","No-Cache");
response.setHeader("Cache-Control","No-Cache");
response.setDateHeader("Expires",0);