如何缓存 Html.RenderPartialView 的结果
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能轻易地 - 主要问题是此时缓存的事情已经完成了。它正在执行页面构建。
检查 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).