Mega Code Archive

 
Categories / ASP.Net Tutorial / Cache
 

You enable Page Output Caching by adding an %@ OutputCache % directive to a page

The following page caches its contents  for 15 seconds. <%@ Page Language="C#" %> <%@ OutputCache Duration="15" VaryByParam="none" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server">     void Page_Load()     {         lblTime.Text = DateTime.Now.ToString("T");     } </script> <html xmlns="http://www.w3.org/1999/xhtml" > <head id="Head1" runat="server">     <title>Cache Page Output</title> </head> <body>     <form id="form1" runat="server">     <div>     <asp:Label         id="lblTime"         Runat="server" />     </div>     </form> </body> </html>