这是一个小差别,如果不知道让人抓狂也不知道!我就抓狂过,好在同学们帮我解决了。
<%
Dim j
For j=1 to 10
response.Write(j)
j=j+1
next
%>
如果写成
<%
Dim j
For j=1 to 10
response.Write(j)
j=j+1
next j
%>
会提示:语句未结束
next j
------^
看到这个提示会很莫名奇妙,在网上一搜一大把都是这样写的啊,可是同学们别忘了,你是在写网页,是VBScript,那些搜出来的都是关于VB的哦~
另外打印输出差别:
VB: print j
VBScript: response.write j
原文链接:https://www.f2er.com/vb/261828.html