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. Suitable for pre-login (public) facing .aspx pages.
Add the following line of code for any post-login (private) page caching and conditional getting, PerfTweaksLite.HttpTweak.PrivateCache(Context, uniqueIdentifier);
where context is HttpContext and uniqueIdentifier is a string type. To be used on dynamic pages where the context varies per user basis. Suitable for post-login (private) .aspx page.