What is Session Identifier?- Session Identifier is used to identify the session.
- It has SessionID property.
- When a page is requested, the browser sends a cookie with a session identifier. This identifier is used by the web server to determine if it belongs to an existing session. If not, a Session ID (120 - bit string) is generated by the web server and sent along with the response.
- Session identifiers are used to identify request from the browser.
- By default, value of SessionId is stored in a cookie.
- You can configure the application to store SessionId in the URL for a "cookieless" session.
- It considered active as long as requests continue to be made with the same SessionID value.
|