如何缓存 Html.RenderPartialView 的结果

发布于 2024-08-24 22:17:00 字数 306 浏览 6 评论 0原文

我正在使用 asp.net mvc2 进行项目。

在母版页中,我有一些代码行,

<% Html.RenderPartialView("Header", Model.HeaderData) %>
...
<% Html.RenderPartialView("LeftMenu", Model.MenuData) %>
...
<% Html.RenderPartialView("Footer") %>

我如何将缓存应用于 RenderPartialView

谢谢

I'm on project using asp.net mvc2.

In master page I have some lines of code line this

<% Html.RenderPartialView("Header", Model.HeaderData) %>
...
<% Html.RenderPartialView("LeftMenu", Model.MenuData) %>
...
<% Html.RenderPartialView("Footer") %>

How could I apply caching to RenderPartialView

Thanks

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

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

发布评论

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

评论(1

遮了一弯 2024-08-31 22:17:00

你不能轻易地 - 主要问题是此时缓存的事情已经完成了。它正在执行页面构建。

检查 http://www .klopfenstein.net/lorenz.aspx/output-donut-caching-attribute-asp-net-mvc-partial-requests 有关此方向的一些内容(包括关于缓存如何在后台工作的很好的讨论)。

You can not easily - the main problem is that at that at that point the caching thing is already done. it is executing the page construction.

Check http://www.klopfenstein.net/lorenz.aspx/output-donut-caching-attribute-asp-net-mvc-partial-requests for some stuff in this direction (including a nice discussion how caching workd under the hood).

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