代碼如下:
<%
dim i
for i=
to
response
write i
next
%>
下面的代碼是錯誤的
會提示缺少一個‘=
的錯誤
代碼如下:
<%
dim i : i=
for i to
response
write i
next
%>
下面的代碼是正確的
[/code]
<%
dim i
i=
for i=i to
response
write i
next
%>
[/code]
第三段代碼中
關鍵語法是
i=i
自己賦值給自己
解決缺少‘=
的錯誤!
詳細出處參考
From:http://tw.wingwit.com/Article/program/net/201311/14477.html