2010-04-15 53 views
2

從一個地方配置aspx頁面的OutputCache,有一個偉大的工具,這是<%@的OutputCache%>與自定義緩存配置文件相關CacheProfile屬性配置的OutputCache從web.config中的緩存ASCX型材

<caching> 
     <outputCacheSettings> 
     <outputCacheProfiles> 
      <add name="myProfile" duration="300" /> 
     </outputCacheProfiles> 
     </outputCacheSettings> 
    </caching> 

而行:

<%@ OutputCache CacheProfile="myProfile" VaryByParam="None" %> 

做在web.config中定義工作。 但是如何爲ascx用戶控件做同樣的事情? CacheProfile不在<%@ OutputCache%>中:S 是否有解決方法? 謝謝。

回答