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 强制刷新图像


- WebMatrix WebSecurity PasswordSalt 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- 输入按键事件处理程序 2022-01-01