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.
<%
For i=0 to 5
str = "x" & i & "= ""blah"""
execute(str)
Next
%>
dcount=0
Do while not rs.eof
str = "ipAddr" & dcount & "=" & trim(rs("ipAddress")) & ""
execute(str)
dcount = dcount+1
rs.movenext
Loop
dcount=0
Do while not rs.eof
Redim Preserve ipAddr(dcount)
ipAddr(dcount) = trim(rs("ipAddress"))
dcount = dcount+1
rs.movenext
Loop
nd I'm getting this errorExpected end of statement at the line execute(str)
str = "ipAddr" & dcount & "=""" & trim(rs("ipAddress")) & """"