各类常见语言清除网页缓存方法汇总
编程学习 2021-07-05 12:58www.dzhlxh.cn编程入门
这篇文章主要介绍了各类常见语言清除网页缓存方法汇总,包括了常见的html、asp、php与java,非常具有实用价值,需要的朋友可以参考下
本文实例汇总了各类常见语言清除网页缓存方法。分享给大家供大家参考。具体实现方法如下:
一般来说,清除缓存我们只需要设置页面为no-cache就可以了,当然像asp,php这种只需要设置Expires操作即可,具体如下。
HTML网页:
代码如下:
<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">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache, must-revalidate">
<META HTTP-EQUIV="expires" CONTENT="Wed, 26 Feb 1997 08:21:57 GMT">
或者
代码如下:
<META HTTP-EQUIV="expires" CONTENT="0">
ASP网页:
代码如下:
Response.Expires = -1
Response.ExpiresAbsolute = Now() - 1
Response.cachecontrol = "no-cache"
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");
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", 1);
response.setHeader("Cache-Control", "no-cache");
response.setDateHeader("Expires", 1);
希望本文所述对大家的web程序设计有所帮助。
上一篇:两分钟学会如何在github托管代码
下一篇:代码中到底应不应当写注释?