Chinaunix首页 | 论坛 | 博客
  • 博客访问: 496820
  • 博文数量: 23
  • 博客积分: 7960
  • 博客等级: 少将
  • 技术积分: 1345
  • 用 户 组: 普通用户
  • 注册时间: 2006-06-11 04:05
文章分类

全部博文(23)

文章存档

2010年(1)

2009年(2)

2008年(20)

我的朋友

分类: 系统运维

2008-11-01 23:08:14

    //清除所有缓存
    protected void RemoveAllCache()
    {
       System.Web.Caching.Cache _cache = HttpRuntime.Cache;
       IDictionaryEnumerator CacheEnum = _cache.GetEnumerator();
       ArrayList al = new ArrayList();
       while (CacheEnum.MoveNext())
       {
          al.Add(CacheEnum.Key);
       }
       foreach (string key in al)
       {
          _cache.Remove(key);
       }
       show();
    }
    //显示所有缓存
    void show()
    {
       string str = "";
       IDictionaryEnumerator CacheEnum = HttpRuntime.Cache.GetEnumerator();
      
       while (CacheEnum.MoveNext())
       {
          str += "缓存名[" + CacheEnum.Key+"]
" ;
       }
       this.Label1.Text = "当前网站总缓存数:" + HttpRuntime.Cache.Count + "
"+str;
    }
阅读(2976) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~