按书上跑马灯代码做为什么没出来效果呢
这是书上一段简单的跑马灯效果代码,为什么没有用呢?<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<% response.Buffer=true %>
<html >
<head>
<title>无标题文档</title>
</head>
<body>
<% response.Flush
abc="这是什么东东哦"
for i=1 to len(abc)
for intwrite=1 to 500000 : next
response.Write mid(abc,i,1)
response.Flush
next
%>
</body>
</html>