cacheprofile

Setting CacheProfile in HttpHandler

In an aspx file you can set the CacheProfile to a certain profile defined in Web.Config. How do you do this in a HttpHandler? I know you can use Cache but can you use Cache Profiles from Web.Config? ...

Configure OutputCache for ASCX from web.config's cache profiles

Hello, To configure aspx pages' OutputCache from one place, there is a great tool which is the CacheProfile attribute in <%@ OutputCache %> associated with a custom cache profile defined in the web.config : <caching> <outputCacheSettings> <outputCacheProfiles> <add name="myProfile" duration="300" /> </ou...