Where does IE store the ASP.NET_SessionId cookie?

Posted by scherand on Stack Overflow See other posts from Stack Overflow or by scherand
Published on 2010-06-14T13:31:39Z Indexed on 2010/06/14 14:12 UTC
Read the original article Hit count: 328

I am a bit baffled here; using IE7, ASP.NET 2.0 and Cassini (the VS built-in web server; although the same thing seems to be true for "real" applications deployed in IIS) I am looking for the session-id-cookie.

My test page shows a session id (by printing out Session.SessionId) and Response.Cookies.Keys contains ASP.NET_SessionId. So far so good.

But I cannot find the cookie in IEs cookie-store! Nor does "remove all cookies" reset the session (as it does in FF)... So where - I am tempted to write that four letter word - does IE store that bloody cookie? Or am I missing something? By the way there is no hidden field with a session id either, as far as I can see.

If I check in FF there is a cookie called ASP.NET_SessionId as I would expect. And as mentioned above deleting that cookie does start a new session; as I would expect.

Can anybody imagine what is happening here?

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about internet-explorer