RSS
Facebook
Twitter

Sunday 8 October 2017

How to Disable cache in ASP.NET

    <caching>
      <profiles>
        <add extension=".css" policy="CacheUntilChange" kernelCachePolicy="DontCache" />
        <add extension=".gif" policy="CacheUntilChange" kernelCachePolicy="DontCache" />
        <add extension=".jpeg" policy="CacheUntilChange" kernelCachePolicy="DontCache" />
      </profiles>
    </caching>

0 comments:

Post a Comment