Hi everyone, Embarcadero have now released RAD Studio 10.2 Tokyo for Windows with improved support for Windows 10 and centennial using VLC. For more information on new features of RAD Studio, please visit https://www.embarcadero.com/products/rad-studio/whats-new-in-10-2-tokyo The toolset and IDE is now available to download from https://www.embarcadero.com/products/rad-studio
Tag: development
Visual Studio 2017
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.
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….