Hi, I've tried several combinations of commands like the following to finish a session:
Request.Cookies.Remove("cookie1");
Request.Cookies.Remove("cookie2");
Request.Cookies.Clear();
Response.Cookies.Remove("cookie1");
Response.Cookies.Remove("cooke2");
Response.Cookies.Clear();
But after that I go to another page that checks for the existence of the cookies, and it still finds them.
Any ideas?
Thanks in advance.