views:

33

answers:

3

Is there a way to see what is in the ASP.NET data cache at any given time? For example to render the contents as a hashtable view (key/object id)?

+1  A: 

Cache implements IEnumerable; you should be able to loop through it using foreach... the enumerator implements this:

IDictionaryEnumerator GetEnumerator();
Brian
+1  A: 

http://aspalliance.com/cachemanager/

Ben Aston