Open In App

ASP Session.SessionID Property

Last Updated : 02 Mar, 2021
Comments
Improve
Suggest changes
Like Article
Like
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

Next Article

Similar Reads