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("string") = "Hello World"
Response.Write "Session Variable: " & session("string")
dim strLocal
strLocal = session("string")
Response.Write "<BR>Local Variable: " & strLocal
dim strSQL
strSQL = "select * from table where column1 = '" & session("string") & "'"
Response.Write "<BR>SQL String: " & strSQL
%>