|
<% response.buffer=true%>
<html>
<head><title>毕业设计</title></head>
<body>
<h2> 毕业设计说明</h2>
<% response.flush
stringmsg="毕业设计说明ABC"
for i=1 to len(stringmsg)
for intwrite=1 to 100000
next
response.write mid(stringmsg,i,1)+"<br>"+"<br>"
response.flush
next
%>
</body>
</html> |
|