ASP.NET Caching Page

How can I cache the master page in ASP.NET?

+3
source share
2 answers

Unlike user controls, you cannot independently output OutputCache to the main page - only as part of the page.

In addition, OutputCaching will not support the performance of a toolbar with a large number of images.

Things that can help include image sprites, client-side caching, using CDNs, using multiple domains for static files, etc.

In case this is useful, I describe these strategies in my book: Ultra-Fast ASP.NET .

+2
+1

Source: https://habr.com/ru/post/1725125/


All Articles