ASP技巧:禁用清除页面缓存的五种方法

时间:2009-07-21 12:33:00 

1、在Asp页面首部加入

Response.Buffer = True 
Response.ExpiresAbsolute = Now() - 1 
Response.Expires = 0 
Response.CacheControl = "no-cache" 
Response.AddHeader "Pragma", "No-Cache"
2、在HtML代码中加入

<HEAD> 
<META HTTP-EQUIV="Pragma" CONTENT="no-cache"> 
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache"> 
<META HTTP-EQUIV="Expires" CONTENT="0"> 
</HEAD>
3、在重新调用原页面的时候在给页面传一个参数 Href="****.asp?random()"
  前两个方法据说有时会失效,而第三种则是在跳转时传一个随机的参数! 因为aspx的缓存是与参数相关的,假如参数不同就不会使用缓存,而会重新生成页面,每次都传一个随机的参数就可以避免使用缓存。这个仅适用于asp&asp.net

  4、在jsp页面中可使用如下代码实现无缓存:

response.setHeader("Cache-Control","no-cache"); //HTTP 1.1 
response.setHeader("Pragma","no-cache"); //HTTP 1.0 
response.setDateHeader ("Expires", 0); //prevents caching at the proxy server  这些代码加在<head> </head>中间具体如下

<head> 
<% 
response.setHeader("Cache-Control","no-cache"); //HTTP 1.1 
response.setHeader("Pragma","no-cache"); //HTTP 1.0 
response.setDateHeader ("Expires", 0); //prevents caching at the proxy server 
%> 
</head>
  5、window.location.replace("WebForm1.aspx");
参数就是你要覆盖的页面,replace的原理就是用当前页面替换掉replace参数指定的页面。
这样可以防止用户点击back键。使用的是javascript脚本,举例如下:

  a.html

<html> 
<head> 
<title>a</title> 
<script language="javascript"> 
function jump(){ 
window.location.replace("b.html"); 

</script> 
</head> 
<body> 
<a href="javascript:jump()">b</a> 
</body> 
</html>
  b.html

<html> 
<head> 
<title>b</title> 
<script language="javascript"> 
function jump(){ 
window.location.replace("a.html"); 

</script> 
</head> 
<body> 
<a href="javascript:jump()">a</a> 
</body> 
</html>
  前4种只是清空了cache,即存储在Temporary Internet Files文件夹中的临时文件,而第五种则是使用跳转页面文件替换当前页面文件,并没有清空cache,也就是说Temporary Internet Files产生了相关的临时文件,两者搭配使用真是清空缓存,必备良药。正好我这里有了记录,所以常来看看哦。

标签:asp,缓存,清楚,禁用
0
投稿

猜你喜欢

  • OpenCV学习之图像形态学处理详解

    2022-02-19 15:45:39
  • python实现12306火车票查询器

    2021-04-07 16:05:58
  • 成功安装vscode中go的相关插件(详细教程)

    2024-05-08 10:14:32
  • python3.9之你应该知道的新特性详解

    2021-09-01 12:13:42
  • Go语言基础切片的创建及初始化示例详解

    2024-04-26 17:33:44
  • SQL Server备份和灾难恢复

    2010-07-02 12:54:00
  • MySql批量插入时如何不重复插入数据

    2024-01-29 04:42:00
  • python 实现循环定义、赋值多个变量的操作

    2023-10-24 08:44:20
  • python线程信号量semaphore使用解析

    2023-02-08 08:47:24
  • MySQL decimal unsigned更新负数转化为0

    2024-01-14 20:59:36
  • python 环境安装及编辑器配置方法小结

    2021-09-13 02:39:25
  • Vue中div contenteditable 的光标定位方法

    2024-05-28 15:58:17
  • python 如何快速复制序列

    2022-12-04 05:20:36
  • python geemap的安装步骤及环境配置

    2023-05-13 18:07:35
  • 隐藏你的.php文件的实现方法

    2023-10-20 22:58:01
  • python实现证件照换底功能

    2021-07-02 03:57:01
  • Python 列表(list)的常用方法

    2022-05-04 19:05:20
  • 如何在TypeScript中正确的遍历一个对象

    2024-04-25 13:09:36
  • Python判断Abundant Number的方法

    2023-10-30 02:25:30
  • Windows Server2008 R2 MVC 环境安装配置教程

    2024-01-17 06:45:24
  • asp之家 网络编程 m.aspxhome.com