Cache ASP.Net Tutorial

The following page caches its contents  for 15 seconds.
<%@ Page Language="C#" %>
<%@ OutputCache Duration="15" VaryByParam="none" %>
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    void Page_Load()
    {
        lblTime.Text = DateTime.Now.ToString("T");
    }



    Cache Page Output


    
    

            id="lblTime"
        Runat="server" />