网络编程 
首页 > 网络编程 > 浏览文章

AJAX防止页面缓存的代码

(编辑:jimmy 日期: 2024/9/23 浏览:3 次 )
采用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");

上一篇:一个简单的ASP+AJAX留言本源码下载
下一篇:.NET2.0环境下的Ajax选型和应用(提供Demo源码下载)
友情链接:杰晶网络 DDR爱好者之家 南强小屋 黑松山资源网 白云城资源网 SiteMap