Cookie Consent by Free Privacy Policy Generator
Privacy
Polipone
<ottobre 2024>
lunmarmergiovensabdom
30123456
78910111213
14151617181920
21222324252627
28293031123
45678910
Immagini

ASP.NET - Cache

Aggiungere nel web.config, sotto system.web

 

    <caching>

      <outputCacheSettings>

        <outputCacheProfiles>

          <add name="Cache30Seconds" duration="30" varyByParam="none" />

          <add name="Cache300Seconds" duration="300"  varyByParam="none" />

        </outputCacheProfiles>

      </outputCacheSettings>

    </caching>

 

 

Aggiungere in una pagina la direttiva

 

<%@ OutputCache CacheProfile="Cache300Seconds" %>

 

Negli UserControl non si può usare la CacheProfile, quindi ogni UserControl dovrà avere specificata la cache, con duration e varyByParam

 

<%@ OutputCache Duration="600" varyByParam="none" %>

Notifiche