在ASP.NET MVC2.0版里做局部缓存(Partial Output Caching )的时候,发现用传统方法缓存是无效的。
以下是传统方法:
Menu.ascx:
<%@ OutputCache Duration="60" Shared="true" VaryByParam="none" %>
Master page:
<% Html.RenderPartial("Menu"); %>
解决方案:
Menu.ascx:
<%@ OutputCache Duration="60" Shared="true" VaryByParam="none" %>
Master page:
<%@ Register Src="~/Views/Shared/Menu.ascx" TagPrefix="MVC" TagName="Menu" %>
<MVC:Menu runat="server"/>
原理其实就是它控件runat server. 因为只有运行在服务端的控件才能生成OutputCache。
另外,用户控件的缓存没办法用代码来控制。这个有点小郁闷。因为在某些情况下我们需要清除用户控件缓存。这个改进办法可以是去缓存用户控件的数据,而不是整个用户控件了。