ClientCache Enables client side caching of dynamic content using dynamic caching and conditional get, thus reducing the request/responses to and from the server when the page content hasn’t changed. To use, do the following: C# Using ClientCache; VB.NET Imports ClientCache To Invoke C# .NET 3+ this.UseClientCache(); C# .NET 2+ UseClientCache(context); VB.NET 3+ Me.UseClientCache() VB.NET 2+…
Tag: modified
PerfTweaksLite for ASP.NET web forms 2.0 – 4.5 with dynamic caching and conditional get support
Dynamic caching and conditional get support for any ASP.NET web form application. Add the PerfTweaksLite dll to your project Add the following line of code for any pre-login (public) page caching and conditional getting, PerfTweaksLite.HttpTweak.PublicCache(Context); where context is HttpContext. To be used on dynamic pages where the content doesn’t vary on a per user basis….