I want my cookie to disappear when the user closes their brower-- I've already set some promising looking properties, but my cookies pop back to live even after closing the entire browser.

HttpCookie cookie = new HttpCookie("mycookie", "abc");
cookie.HttpOnly = true; //Seems to only affect script access
cookie.Secure = true; //Seems to affect only https transport

What property or method call am I missing to achieve an in memory cookie?

link|improve this question

feedback

4 Answers

up vote 3 down vote accepted

Cookies without an expiration explicitly set will automatically go away once the browsing session is over.

Now, "browsing session" means different things to different browsers. For some browsers it means that every instance of the browser is closed. For some it just means that the relevant tabs or original browser is closed.

In your testing make sure you close EVERY instance of the browser before reopening to look for the cookie. If you continue to have problems post the browser name and revision.

link|improve this answer
feedback
cookie.Expires = DateTime.MinValue;

this cookie will expire, as soon as the browser is closed.

link|improve this answer
feedback

Take a look at the ASP.NET Session variable. This will persist depending upon your browser and can be set to be "cookieless" or with a hard timeout.

http://msdn.microsoft.com/en-us/library/h6bb9cz9%28VS.71%29.aspx

link|improve this answer
This isn't really related to my question. Imagine if Session was disabled and I still wanted to create an Http Cookie that goes away when the browser is closed/isn't written to disk, etc. I think some of the other answers are on the right track though. – MatthewMartin Dec 21 '10 at 16:15
feedback

If you do no set the Cookie.Expires property the cookie will be set to expire at the end of the browser session.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.