禁止頁面內容緩存:
? HTM
網頁
?
? <META?? HTTP-EQUIV="pragma"?? CONTENT="no-cache">?
? <META?? HTTP-EQUIV="Cache-Control"?? CONTENT="no-cache,?? must-revalidate">?
? <META?? HTTP-EQUIV="expires"?? CONTENT="Wed,?? 26?? Feb?? 1997?? 08:21:57?? GMT">?
? ASP
網頁
?
? <%?
????? Response.Expires?? =?? -1?
????? Response.ExpiresAbsolute?? =?? Now()?? -?? 1?
????? Response.cachecontrol?? =?? "no-cache"?
? %>?
? PHP
網頁
?
? header("Expires:?? Mon,?? 26?? Jul?? 1997?? 05:00:00?? GMT");?
? 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);?
? C#
中禁止
cache
的方法!
?
? Response.Buffer=true;?
? Response.ExpiresAbsolute=System.DateTime.Now.AddSeconds(-1);?
? Response.Expires=0;?
? Response.CacheControl="no-cache";?
?
禁止圖片緩存:
在圖片后面加一個隨機參數,如:
<img src=”images/bg.gif?temp_id=156404/>
?
經測試,有效。
?