DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> AJAX入門 >> AJAX基礎知識 >> AJAX防止頁面緩存的代碼
AJAX防止頁面緩存的代碼
編輯:AJAX基礎知識     
采用AJAX技術的時候 通常我們無刷新頁面提交數據後 用同樣的url去獲取數據的時候會發現是以前的數據~那樣就給client端帶來假象了~~ 采用以下的方法可以取消緩存 
htm網頁 
<metahttp-equiv="pragma"content="no-cache"> 
<metahttp-equiv="cache-control"content="no-cache,must-revalidate"> 
<metahttp-equiv="expires"content="wed,26feb199708:21:57gmt"> 
或者<metahttp-equiv="expires"content="0"> 
asp網頁 
response.expires=-1 
response.expiresabsolute=now()-1 
response.cachecontrol="no-cache" 
php網頁 
header("expires:mon,26jul199705:00:00gmt"); 
header("cache-control:no-cache,must-revalidate"); 
header("pragma:no-cache");  
jsp網頁
response.addHeader("pragma", "no-cache");
response.addHeader("cache-control", "no-cache,must-revalidate");
response.addHeader("expires", "0");

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved