ASP中scripttimeout关于“落星”的问题
<%
server.scripttimeout=100
%>
<html>
<head>
<title>落星</title>
</head>
<body>
<%
randomize
starx=60
for k=1 to 20
nextsecond=dateadd("s",10,time)
do while time<nextsecond
loop
starx=starx+3*rnd()-1
for i=1 to starx
response.write " "
next
response.write "*<p>"
next
%>
</body>
</html>
运行应该是10个*把
为什么我运行的是12个 ?而且如果server.scripttimeout=90(就是默认)就只有10个