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