top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

By default where the sessions ID's are stored in Asp.Net?

+5 votes
368 views
By default where the sessions ID's are stored in Asp.Net?
posted Dec 11, 2014 by Manikandan J

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+2 votes

By default, the unique identifier for a session is stored in a non-expiring session cookie in the browser. You can specify that session identifiers not be stored in a cookie by setting the cookieless attribute to true in the sessionState configuration element.
We can also configure our application to store it in the url by specifying a "cookieless" session

The ASP Session cookie has this format:

ASPSESSIONIDACSSDCCC=APHELKLDMNKNIOJONJACDHFN

answer Dec 14, 2014 by Shivaranjini
...