Cache ASP.Net Tutorial

<%@ Page Language="C#" %>
<%@ OutputCache Duration="15" VaryByParam="none" %>
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    public static string GetTime(HttpContext context)
    {
        return DateTime.Now.ToString("T");
    }



    Show WriteSubstitution


    
    

    The cached time is: <%= DateTime.Now.ToString("T") %>
    
    The substitution time is:
    <% Response.WriteSubstitution(GetTime); %>