带有回发的动态页面上的 Outputcache IIS 7

发布于 2024-12-15 10:57:46 字数 227 浏览 1 评论 0原文

我在 IIS 7 中启用了输出缓存,并使用 * 通过所有查询字符串改变它。但是有些页面无法正常运行。例如,我有一个登录页面,其中有一个 asp:LinkBut​​ton,单击该页面后应该让用户登录并重定向他们。但是 IIS 已缓存此页面,因此当我单击“登录”时发生的只是页面重新加载。您有什么建议可以避免某些页面出现这种预期行为,同时在其他页面上保留这种行为?

提前致谢。

I enabled output caching in IIS 7 and varied it by all querystrings, using *. However some pages do not act correctly. For instance I have a login page which has a asp:LinkButton which when clicked should log the user in and redirect them. However IIS has cached this page and so all that happens when I click login is the page reloads. What suggestions would you have to avoid this expected behaviour for some pages while preserving it on otheres?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

慕烟庭风 2024-12-22 10:57:46

你不能这样做。输出缓存的工作原理是根据指定参数(在您的情况下为任何查询字符串)缓存页面渲染的 html。当您单击导致回发的链接按钮时,它本质上是对同一页面的表单发布,即相同的 URL、相同的查询字符串。因此,OutputCache 模块将找到一个匹配项并将其返回,从而跳过页面生命周期。因此,不会处理回发。

您可以尝试的是仅缓存 GET。

You can't do this. How output caching works is by caching the rendered html for the page against the specified parameters - in your case, any query string. When you click the link button causing a postback, it is essentially a form post to the same page i.e. same URL, same query string. So the OutputCache module is going to find a match and serve that back, skipping your Page life cycle. The postback, therefore will not be processed.

What you can try is caching only GETs.

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