Home ASP.NET Caching Output

ASP.NET - Caching Output


After completing this tutorial, you will be able to
  • Cache content
  • Improve the performance of Web applications by using output caching
  • Manage the cached content through the OutputCache directive
  • Manage the cached content through the HttpCachePolicy class
This tutorial covers ASP.NET's support for caching output. In previous tutorial, we saw what an impact data caching could make on your application. By avoiding round-trips to the database, you can make parts of your Web site run much faster than they otherwise would. In addition to data caching, ASP.NET supports output caching.

Next