标签:span public div sum runtime system void nbsp style
代码
/// <summary> /// 清除所有Cookie /// </summary> public static void RemoveAll() { 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); } }
标签:span public div sum runtime system void nbsp style
原文地址:http://www.cnblogs.com/xsj1989/p/6874423.html