ASP.NET Session Identifier

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.
Advantages and disadvantages of using Session State Management - ASP.NET
ASP.NET - Advantages and disadvantages of using Session State Management - The advantages of using session state are as follows: It is easy to implement..
ASP.NET Session State Modes
ASP.NET Session State Modes - InProc Mode: This mode stores the session data in the ASP.NET worker process....
ASP.NET Authentication and Authorization
ASP.NET - Define Authentication and Authorization - Authentication is the process of verifying user's identity. Authorization is the process of granting privilege to authenticated user...
Post your comment