首页 > 学院 > 开发设计 > 正文

asp.net(C#)禁止缓存文件

2019-11-17 01:45:17
字体:
来源:转载
供稿:网友

asp.net(C#)禁止缓存文件

IIS会按文件地址及参数将文件缓存到客户端,以便再次访问该内容时速度更快。如果要取消这种机制则需要禁止缓存文件。

一、编程方式Response.Buffer = true;Response.ExpiresAbsolute = DateTime.Now.AddDays(-1);Response.Cache.SetExpires(DateTime.Now.AddDays(-1));Response.Expires = 0;Response.CacheControl = "no-cache";二、代码方式<%@ OutputCache Duration="1" varybyparam="none" Location= "None" %>


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表