要从一个地方配置 aspx 页面的 OutputCache,有一个很棒的工具,它是<%@ OutputCache %>中的CacheProfile属性,它与web.config中定义的自定义缓存配置文件相关联:
<caching>
<outputCacheSettings>
<outputCacheProfiles>
<add name="myProfile" duration="300" />
</outputCacheProfiles>
</outputCacheSettings>
</caching>
和线:
<%@ OutputCache CacheProfile="myProfile" VaryByParam="None" %>
做这项工作。但是如何为 ascx 用户控件做同样的事情呢? CacheProfile 不在 <%@ OutputCache %> 中:S 有解决方法吗?谢谢。