Microsoft VBScript 编译器错误 (0x800A03EE)缺少 ')'

来源:百度知道 编辑:UC知道 时间:2024/05/25 09:50:07
response.Write ("<table align="center" width="50%">")

------------------------------------------------------
Microsoft VBScript 编译器错误 (0x800A03EE)
缺少 ')'
/aa/CLASS/SFT_Class.asp, line 73, column 31
response.Write ("<table align="center" width="50%">")
在线等待~三克油~

引号的事,要么转义,要么去掉,要么变成单引号

response.Write ("<table align=\"center\" width=\"50%\">")

response.Write ("<table align=center width=50%>")

response.Write ("<table align='center' width='50%'>")

改为response.Write ("<table align='center' width='50%'>")

是双引号导致的错误.
在字符串中的双引号应该改为单引号,或者用两个双引号来做

希望我的回答对你有所帮助,如满意请采纳.谢谢