日期:2014-05-18  浏览次数:20365 次

怎么查看cache里的内容?高手进.速度结帖~~~~~
比如通过
  IDictionaryEnumerator CacheEnum = HttpRuntime.Cache.GetEnumerator();
  while (CacheEnum.MoveNext())
  {
  str += "缓存名 <b> [ " + CacheEnum.Key + "] </b> <br /> ";
  }
  this.Label1.Text = "当前网站总缓存数: " + HttpRuntime.Cache.Count + " <br /> " + str;  
知道CacheEnum.Key 或Value后,怎么查看指定的Cache里的内容.
好比 CacheEnum.Value 是 abc 类型是 datarow 类型的.
怎么查看


------解决方案--------------------
GetType()就可以看类型了
------解决方案--------------------
CTYPE(cache(cachename),datarow)
------解决方案--------------------
设置webconfig trace节点,可以查看这些内容