实用技巧

关注公众号 jb51net

关闭
首页 > 网络编程 > ASP.NET > 实用技巧 > 清空所有Cache

.net清空所有Cache的实现代码

作者:

.net清空所有Cache的实现代码
复制代码 代码如下:

IDictionaryEnumerator CacheEnum = Cache.GetEnumerator();
while (CacheEnum.MoveNext())
{
Cache.Remove(CacheEnum.Key.ToString());
}
Response.Write("缓存清空成功");
您可能感兴趣的文章:
阅读全文