I am working on a MVC website, and in my logout link I want to remove all the current domain cookies.
I tried this:
this.ControllerContext.HttpContext.Response.Cookies.Clear();
and this:
Response.Cookies.Clear();
but both didn't work and the cookies still there.