您现在的位置是:网站首页> 编程资料编程资料
设置ASP.NET页面不被缓存(客户端/服务器端取消缓存方法)_实用技巧_
2023-05-25
371人已围观
简介 设置ASP.NET页面不被缓存(客户端/服务器端取消缓存方法)_实用技巧_
复制代码 代码如下:
///
/// 设置页面不被缓存
///
private void SetPageNoCache()
{
Response.Buffer = true;
Response.ExpiresAbsolute = System.DateTime.Now.AddSeconds(-1);
Response.Expires = 0;
Response.CacheControl = "no-cache";
Response.AppendHeader("Pragma", "No-Cache");
}
1、取消缓存
(2)客户端取消
复制代码 代码如下:
(3)服务器具端取消:
服务器端:
复制代码 代码如下:
Response.Buffer = true;
Response.ExpiresAbsolute = DateTime.Now.AddDays(-1);
Response.Cache.SetExpires(DateTime.Now.AddDays(-1));
Response.Expires = 0;
Response.CacheControl = "no-cache";
Response.Cache.SetNoStore();
Global里面:
复制代码 代码如下:
protected void Application_BeginRequest(Object sender, EventArgs e)
{
HttpContext.Current.Response.Cache.SetNoStore();
}
<%@ OutPutCache Location="None"%>
页面基类:
复制代码 代码如下:
public class PageBase : Page
{
public PageBase() {}
protected override OnLoad( EventArgs e ) {
Response.Cache.SetNoStore();
base.OnLoad();
}
}
最简单的办法 :-)
学CSDN的这个论坛,在URL后面随机的加一些没用的参数,比如:
http://xxx/xxx/xxx.jpg?p=xxx
IE是用过URL来控制缓存的,这样就解决了
您可能感兴趣的文章:
相关内容
- 读取纯真IP数据库的公用组件接口QQWry.NET_实用技巧_
- c#实现根据网络IP显示地理位置功能示例_实用技巧_
- 关于中gridview 字符串截取的方法_实用技巧_
- aspxgridview CustomButtonCallback 不支持弹出消息提示解决方法_实用技巧_
- 页面爬虫(获取其他页面HTML)加载到自己页面示例_实用技巧_
- asp.net 图标提取以及图标转换的实例代码_实用技巧_
- ASP.NET过滤器的应用方法介绍_实用技巧_
- 给自定义Web控件添加事件(前后台代码)_实用技巧_
- .net 读取非标准配置文件的小例子_实用技巧_
- 将.aspx转换为.htm的两种方法_实用技巧_
