Open In App

ASP Session.SessionID Property

ASP Session.SessionID Property: It is a read-only property It means you can not modify this property. It returns a unique ID for each new user session that is generated by the user Every session gave a unique ID that is generated by the server when the session is created. It is stored as a cookie in the client machine. 

Syntax:



Session.SessionID  

Example Code: Below code returns a unique ID for the Session.




<%
Response.Write(Session.SessionID)
%>

Output:



7464747834
Article Tags :