ASP.NET 输出缓存在 IIS7.5 上不起作用

发布于 2024-11-29 12:02:03 字数 362 浏览 1 评论 0原文

我正在对 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笙痞 2024-12-06 12:02:03

您是否重写了 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文