Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
  Database
Automation
OS/Networking
Graphics
Links
Tools
» Regular Expr Tester
» Free Tools

How to clear cached objects programatically?

Total Hit ( 2683)

Rate this article:     Poor     Excellent 

 Submit Your Question/Comment about this article

Rating


 


When you use cached output on your ASP.net page it won't be refreshed until times out or you recompile the web application. During development you might need to refresh your content frequently for testing purpose and then you can face problem because of cached output. Here is a simple solution to this problem. This sample page will loop through all cached objects and clear those objects so when you referesh your page you can see updated output.

ClearCach.aspx

Click here to copy the following block
<%@ Page Language="C#"%>

<html>
  <head>  
    <title>Clear Cache</title>    
    <script language="C#" runAt="server">    
      protected override void OnInit(EventArgs e)
      {
        this.Clear.Click += new EventHandler(this.Clear_Click);      
      }
      
      private void Clear_Click(object sender, EventArgs e)
      {
        foreach (DictionaryEntry entry in this.Cache)
        {        
          this.Cache.Remove((string)entry.Key);        
        }      
      }    
    </script>  
  </head>  
  <body>  
    <form runAt="server">  
      <h1>Clear Cache</h1>
      <asp:button id="Clear" runAt="server" text="Clear!" />
    </form>
  </body>
</html>


Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )


Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.