File : p01.asp. ID : 2103
Skin : Default | Sons-of-obsidian | Sunburst | Highlighter | Frame
<body><font face="courier new" size=4>
Sample : <a href=p01.asp?5>p01.asp?5</a><pre>
<%
dim max, i
max = 10
if len(request.querystring) > 0 then max = int(request.querystring) end if
if max > 50 then max = 9
i = 1
do while i <= max
  response.write( i & "<br>")
  i = i + 1
loop
%>
</body>