Tips Station Asp.net Article Seo Articles
Tutorials Code Samples
›  Home
›  Mission
›  About us
›  Contact Us
›  Feedback
›  Terms & Condition
Asp Articles
IT Solutions
 
› ASP.NET

› Programming Tips

› Ajax

› Asp

› ADO.NET

› Databases

› SEO

› CSS And Designing

› Php

 
Most Viewed Articles
 
› Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.

› Change theme dynamically without page refresh in ASP.NET

› Install AJAX On Machines Running Visual Studio 2005

› Creating Pretty Popups Using AJAX

› Simple ASP Image Resize Function

› SQL Server Performance Counters

› ASP.Net Interview Questions And Their Answers

› Encode Url using ASP

› Difference Between DataGrid and GridView in Asp.Net

› Select Specific Value WithIn Drop Down List Or Radio Button List

more...
 
 
Home> Programming Tips
 
Clear all Cached objects in Asp.Net
 

An example of how to clear all cached objects

The Cache doesn't have a Clear method so you have to loop through each item and Remove each key:

    Dim CacheEnum As IDictionaryEnumerator = Cache.GetEnumerator  
      
    While CacheEnum.MoveNext  
        Cache.Remove(CacheEnum.Key.ToString)  
    End While 

 
 
Vrp Technologies
 
Serversea Hosting
 
 
Latest Articles
 
› Sending SMS With PHP

› MySQL Join Tutorial

› Make An RSS Feed Using PHP

› Intro To Object: Option Variables

› Design An Online Chat Room With PHP And MySQL

› Create Tell A Friend Script With HTML & PHP

› Benchmark And Optimize PHP Script Speed

› What Kind of DBA Are You?

› SQL Server Performance Counters

› SQL Server Performance Tips

more...
 
Random Articles
 
› Clear all TextBox values in Asp.Net

› How My Page Rank Went From 0 To 5 In One Update

› ASP.Net Interview Questions And Their Answers

› Add a Confirmation popup to a Button in Asp.Net

› Read and display a text file in Asp.net

› Understanding Transaction in ADO.NET

› UpdatePanel control in Asp.net Ajax

› Design An Online Chat Room With PHP And MySQL

› Top 10 Best Practices for Production ASP.NET Applications

› Intro To Object: Option Variables

more...
 
Home Mission About us Contact us Feedback Terms Conditions
2008 © Copyright TipsStation. All rights reserved.