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 Foo
Dim Bar()
Dim Indx
Indx = 0
For Each Foo in Request.Form
Bar(Indx) = Request.Form(Foo)
Response.Write Foo & " = " & Request.Form(Foo)
Response.Write "<br>" & vbCrLf
Indx = Indx + 1
Next
%>
for i = 0 to n
set foo = coll(i)
... do something
next
for each foo in coll
... do something
next