清除所有Cookie
Posted 邢帅杰
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了清除所有Cookie相关的知识,希望对你有一定的参考价值。
代码
/// <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); } }
以上是关于清除所有Cookie的主要内容,如果未能解决你的问题,请参考以下文章
用 PHP 清除 Cookie 在 Safari 中的行为很奇怪