Cache ASP.Net Tutorial

The following web configuration file changes the memory limit of your application to 100,000 kilobytes and disables the expiration of items in the cache.
File: Web.Config

    
      
        
      

    


The following page displays your application's current private bytes limit
<%@ Page Language="C#" %>
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    void Page_Load()
    {
        lblPrivateBytes.Text = Cache.EffectivePrivateBytesLimit.ToString("n0");
    }



    Show Private Bytes Limit


    
    

    Effective Private Bytes Limit:
            id="lblPrivateBytes"
        Runat="server" />