本文介绍了如何删除MVC网站目前所有域的Cookie?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在一个MVC的网站上,在我的注销链接我要删除所有当前域的cookie。
I am working on a MVC website, and in my logout link I want to remove all the current domain cookies.
我试过这样:
this.ControllerContext.HttpContext.Response.Cookies.Clear();
和这样的:
Response.Cookies.Clear();
但都没有工作,饼干仍然存在。
but both didn't work and the cookies still there.
推荐答案
这个怎么样?
string[] myCookies = Request.Cookies.AllKeys;
foreach (string cookie in myCookies)
{
Response.Cookies[cookie].Expires = DateTime.Now.AddDays(-1);
}
这篇关于如何删除MVC网站目前所有域的Cookie?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!