摘要: IDictionaryEnumerator em = HttpContext.Current.Cache.GetEnumerator(); while (em.MoveNext()) { if (需要删除的条件) { HttpContext.Current.Cache.Remove(em.Key.ToString()); } } 阅读全文
posted @ 2013-10-09 11:17 越天 阅读(260) 评论(0) 推荐(0) 编辑