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