IIS 删除 If-None-Match 和 If-Modified-Since 标头
我有一个 ASHX 处理程序或一个 ASPX 页面(这两种情况都会出现问题)。 Web 客户端发送包含 If-None-Match 和/或 If-Modified-Since 标头的请求,但 context.Request.Headers.Get("If-None-Match") 或 context.Request.Headers.Get("If- Modified-Since") 在处理程序中为 null。
相同的脚本可以在我的本地开发计算机上运行,但不能在在线计算机上运行(两者都在 Win 2008、.NET 3.5 上运行 IIS7)
I have an ASHX handler or an ASPX page (the problem happens in both cases).
The web client sends a request containing If-None-Match and/or If-Modified-Since headers but context.Request.Headers.Get("If-None-Match") or context.Request.Headers.Get("If-Modified-Since") is null in the handler.
The same script works in my local development machine but it doesn't work in the online machine (both are running IIS7 on Win 2008, .NET 3.5)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在执行 apsx 页面之前使用第 3 方模块创建这些标头的副本。
例如,对于 Helicon Ape (http://www.helicontech.com/ape),这些规则可能会起作用窍门:
基本上他们获取标头并使用 My- 前缀设置新标头。仅当 IIS 不在 Ape 之前删除标头时,此操作才有效。
You may use 3rd-party module to create duplicates of those headers before apsx page is executed.
For example with Helicon Ape (http://www.helicontech.com/ape) these rules may do the trick:
Basically they get the headers and set the new ones with My- prefix. This will work only if IIS doesn’t remove headers before Ape.