codice:
var = 1
for x = 1 to 20
if var < 10 then
temp = "0" & var
response.write temp & " "
else
response.write var & " "
end if
var = var + 1
next