Ricordando le tabelline

Questo script permette di riprodurre le classiche tabelline:

<%
function tabella(intMax)
for ctInd= 1 to intMax
response.write "<br> "
for ctInd2= 1 to intMax
response.write ctInd ctInd2 &amp; " "
next
next
end function 
call tabella(10)
%>