在地址栏中输入"http://haohao/caiziyuan/doloop.asp",按回车后,浏览到的是以下现象:     < title>DoLoop.asp< /title>< body bgcolor="#FFFFFF">< /head>< p>< /p> < p>请将今年到本月为止的每个月份的销售结算记录填写在本页之上。< P> < % counter = 1 thismonth = month(now()) Do while counter < thismonth + 1 response.write " " & counter & " 月份 : " response.write "______________________________" & "< BR>< br>" If counter >13 then exit do end if counter = counter+1 Loop %> < hr>< /body>< /html>     doloop.asp的代码:
<html>
<head>
< title>DoLoop.asp< /title>< body bgcolor="#FFFFFF">< /head>< p>< /p>
 <body>
< p>请将今年到本月为止的每个月份的销售结算记录填写在本页之上。< P>< %
counter = 1
thismonth = month(now())
Do while counter < thismonth + 1
response.write " " & counter & " 月份 : "
response.write "______________________________" & "< BR>< br>"
If counter >13 then
exit do
end if
counter = counter+1
Loop
%>
< hr>< /body>< /html>