Hi everyone, Visual Studio 2017 is now available to download from https://www.visualstudio.com/ for developing Windows software and applications whether they’re running on Windows Phone, Surface. Windows 10, Xbox, Holo Lens, Azure, IoT and any other Windows-based device.
Tag: client
ClientCache for ASP.NET web forms 2.0 – 4.5 (dynamic caching and conditional get support)
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+…
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….