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 data(4)
data(0) = "something"
data(1) = "something more"
data(2) = "you get the point"
data(3) = "red rover red rover"
data(4) = "I hate making up fake variables :P"
Dim i
For i = 0 to 4
response.Write data(i) & "<br>"
Next
For i = 1 to 5
Execute("Response.Write data" & i)
Next