Microsoft VBscript 编译器错误 错误 '800a0409'
未结束的字符串常量
/index.asp,行 25
借助下划线(_)可实现字符串换行:
<%
Dim str
str = "ab"_
&"cd"_
&"ef"_
&"g"
%>语句也可以换行:
<%
Dim num
num = 1+2 _
+3_
+4_
+5
%>Microsoft VBscript 编译器错误 错误 '800a0409'
未结束的字符串常量
/index.asp,行 25
<%
Dim str
str = "ab"_
&"cd"_
&"ef"_
&"g"
%><%
Dim num
num = 1+2 _
+3_
+4_
+5
%>
评论(0)
暂无评论。