asp
[
Projects
]--
CSS
*
HTML
*
JAVA SCRIPT
*
PERL
*
PHP
*
ASP
*
XML
-- [
Back to Home]
<% REM Setup an Array dim x(1,1) dim length dim i, j x(0,0) = "1.jpg" x(0,1) = "2.jpg" x(1,0) = "3.jpg" x(1,1) = "4.jpg" REM Returns the numer of elements in a given dimension of an array length = UBOUND(x) response.write("
") for i=0 to length response.write("
") for j=0 to length response.write("
") response.write("
") response.write("
") next response.write("
") next response.write("
") %>