当前位置:Gxlcms > asp.net > .net清空所有Cache的实现代码

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

时间:2021-07-01 10:21:17 帮助过:6人阅读

代码如下:
IDictionaryEnumerator CacheEnum = Cache.GetEnumerator();
while (CacheEnum.MoveNext())
{
Cache.Remove(CacheEnum.Key.ToString());
}
Response.Write("缓存清空成功");

人气教程排行