|
|
|
|
Dot Net Interview Questions !!!
Interview Tips
on iGold.in
|
|
|
|
 |
Links
|
Tips and Tricks
Category :
Dotnet - General
|
|
|
|
How to remove the existing cache content
|
Code to remove cached content in an Asp.net Application
Dim K As IEnumerator
K = Cache.GetEnumerator
While K.MoveNext
Dim dE As DictionaryEntry = K.Current
Cache.Remove(dE.Key)
End While
|
|