Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Session("my_session_name") = "Bob"
sMySessionValue = Trim(Session("my_session_name"))
If Len(sMySessionValue) > 0 Then
Response.Write " 1. My session value is: " & sMySessionValue
End If
If sMySessionValue <> "" Then
Response.Write " 2. My session value is: " & sMySessionValue
End If