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.
<%
Dim arrApp, arrSes
arrApp = Array("App 0", "App 1", "App 2")
arrSes = Array("Ses 0", "Ses 1", "Ses 2", "Ses 3", "Ses 4")
Application("arrApp")= arrApp
Session("arrSes") = arrSes
%>
<html>
<body>
<a href="showarray.asp">Click Here</a>
</body>
</html>
<html>
<body>
<%
Dim arrApp, arrSes
arrApp = Application("arrApp")
arrSes = Session("arrSes")
dim numApp, numSes
numApp = ubound(arrApp)
numSes = ubound(arrSes)
for i = 0 to numApp
response.write "Application Array " & i & " = " & arrApp(i) & "<br>"
next
response.write "<br>"
for i = 0 to numSes
response.write "Session Array " & i & " = " & arrSes(i) & "<br>"
next
%>
</body>
</html>