IIS 7 Force Fresh Images(IIS 7 强制刷新图像)
问题描述
如何强制 IIS 7不缓存特定页面的图像?
How do I force IIS 7 to not cache images for a particular page?
推荐答案
在 IIS7 中,您可以在 web.config 中以声明方式或以编程方式执行此操作.
In IIS7, you can do this either declaratively in your web.config, or programmatically.
<location path="YourPath">
<system.webServer>
<staticContent>
<clientCache cacheControlMode="DisableCache" />
</staticContent>
</system.webServer>
</location>
编程解决方案需要一个简单的 HttpModule,它已注册为在集成模式下运行所有请求,您可以在其中查找您关心的 URL.然后调用:
The programmatic solution requires a simple HttpModule that's registered to run for all requests in Integrated mode, where you look for the URLs that you're concerned about. Then call:
context.Response.Cache.SetCacheability(HttpCacheability.NoCache);
FWIW,您可能需要考虑仅禁用客户端缓存,同时启用服务器端缓存,方法是使用 HttpCacheability.ServerAndNoCache
.此外,如果您在图像名称上添加查询字符串,您将阻止 http.sys 进行服务器端缓存.
FWIW, you may want to consider disabling client-side caching only, while enabling server-side caching, by using HttpCacheability.ServerAndNoCache
. Also, if you add a query string on the image names, you will prevent server-side caching by http.sys.
如果有帮助,我会在我的书中详细介绍这些技术:Ultra-Fast ASP.NET.
In case it helps, I cover techniques like these in detail in my book: Ultra-Fast ASP.NET.
这篇关于IIS 7 强制刷新图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:IIS 7 强制刷新图像


基础教程推荐
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01