<%
max = int(request.querystring)
if max > 50 then max = 9
i = 1
do while i <= max
   response.write( i & "
") i = i + 1 loop %>