Open In App

ASP Session.SessionID Property

Last Updated : 02 Mar, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

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.

Javascript




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


Output:

7464747834

Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads