2 Dimensional Array:
Click here
to test this script.
Code:
Highlight
<% dim strArray() x = -1 for i = 100 to 200 x = x + 1 Redim Preserve strArray(1,x) strArray(0,x) = x strArray(1,x) = i next for i = 0 to uBound(strArray,2) response.write strArray(0,i) & "/" & strArray(1,i) & "
" next %>