Content Output Caching – Part 1

Using Output Caching helps to improve the performance of an ASP.NET MVC Application. It caches the content returned by an action method so that the same content does not need to be generated each time the same action method is invoked in the controller.  If a page takes a lot of server-side resources to create, …

Continue reading Content Output Caching – Part 1

Advertisement