Embarcadero RAD Studio 10.4.1 released
Looks like a new update for my favourite development environment has been released with lots of improvements. Please visit: https://www.embarcadero.com/ for more information.
Looks like a new update for my favourite development environment has been released with lots of improvements. Please visit: https://www.embarcadero.com/ for more information.
Hi there, All projects are slowly being migrated from my GitHub https://github.com/ZeroInfinite and https://github.com/ZeroMSN repositories to my CodePlex vault https://www.codeplex.com/site/users/view/ZeroInfinite. All future submissions and new projects will now be done at the CodePlex vault.
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+… Read More »
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.… Read More »