PDA

View Full Version : Looping Through an Array


admin
05-29-2003, 03:51 PM
<%
Dim i, myarray(5)

'the UBOUND() function determines the number of elements in the array
For i = 0 to UBound(myarray)
response.write myarray(i)
Next
%>