ASP.NET 输出缓存在 IIS7.5 上不起作用
我正在对 ASP.NET 3.5 网站上的页面使用输出缓存功能,它在我的本地计算机 (Win XP / IIS5.1) 上运行良好,但在开发服务器 (IIS7.5) 上运行时不会缓存)。
我正在使用的代码如下...
<%@ OutputCache Duration="3600" Location="Server" VaryByParam="*" %>
有人知道如何让输出缓存在 IIS7.5 上工作吗?我已经通过 StackOverflow 和 Google 进行了搜索,但找不到任何具有类似功能的人问题。
任何帮助将不胜感激。
干杯,
蒂姆。
I'm using the output cache feature for a page on my ASP.NET 3.5 website and it works fine on my local machine (Win XP / IIS5.1) but it won't cache when running on the development server (IIS7.5).
The code I'm using is below...
<%@ OutputCache Duration="3600" Location="Server" VaryByParam="*" %>
Does anyone know how to get output caching to work on IIS7.5? I've searched through StackOverflow and Google and can't find anyone that's having similar issues.
Any help would be much appreciated.
Cheers,
Tim.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否重写了 global.asax 中的 URL?正是因为如此才发生的。
或者
您是否尝试过将集成模式切换为经典模式,因为集成模式会覆盖在 IIS 6.0 中有效的设置,而在 IIS 7.5 中则无效。
Are you rewriting the URL in global.asax ? It happens due to that.
OR
Have you tried switching Integrated mode to classic mode as Integrated mode overrides the settings which are working in IIS 6.0 and they are not working in IIS 7.5.