首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 媒体动画 > CAD教程 >

silverlight webclient 下载的图像怎么禁止缓存到Temporary Internet Files文件夹中

2012-03-08 
silverlight webclient 下载的图像如何禁止缓存到Temporary Internet Files文件夹中使用 webclient 下载 .

silverlight webclient 下载的图像如何禁止缓存到Temporary Internet Files文件夹中
使用 webclient 下载 .jpg图像。浏览器会自动缓存。如何禁止缓存呢!谢谢

[解决办法]
尝试在IIS里面设置不缓存。

在IIS里找到相应目录添加HTTP头:

cache-control: "no-cache"
pragma: "no-cache"
expires: "-1"
[解决办法]
控制浏览器cache,需要控制Http Header。
Cache-control: no-cache 
Pragma: no-cache 

可以在代码中使用:

HttpContext.Current.Response.CacheControl = "no-cache"
HttpContext.Current.Response.AddHeader("Pragma", "no-cache") 
HttpContext.Current.Response.Expires = -1

热点排行