欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

各类常见语言清除网页缓存方法汇总

程序员文章站 2022-04-28 17:02:10
本文实例汇总了各类常见语言清除网页缓存方法。分享给大家供大家参考。具体实现方法如下: 一般来说,清除缓存我们只需要设置页面为no-cache就可以了,当然像asp,php...

本文实例汇总了各类常见语言清除网页缓存方法。分享给大家供大家参考。具体实现方法如下:

一般来说,清除缓存我们只需要设置页面为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="expires" content="0">

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", 1);

希望本文所述对大家的web程序设计有所帮助。