How does ASP.NET store SessionIDs by default
How does ASP.NET store SessionIDs by default ?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
ArshadPosted Mar 28, 2011, 5:25 AM
Srikant is correct, I just want to say that this mode is called as InProc mode and its based on cookie(a default one). as per srikant you can have InProc as cookieless also.
Regards,
Soft CornerPosted Mar 28, 2011, 4:31 AM
SessionID values are stored in a cookie, by default.
User can also configure the application to store SessionID values in the URL for a "cookieless" session.