Cache ASP.Net Tutorial

The MethodName property accepts the name of a method defined in the page. 
The method must be a shared (static) method because an instance of the class is not created when the page is output cached.
<%@ 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");
    }



    Substitution Control


    
    

    The cached time is: <%= DateTime.Now.ToString("T") %>
    
    The substitution time is:
            id="Substitution1"
        MethodName="GetTime"
        Runat="server" />