注册 登录
编程论坛 ASP技术论坛

按书上跑马灯代码做为什么没出来效果呢

liujiangmc 发布于 2008-05-10 11:36, 552 次点击
这是书上一段简单的跑马灯效果代码,为什么没有用呢?
<%@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>
0 回复
1