用response.write动态生成HTML页面出现编译器错误 '800a0401'
<%@LANGUAGE="VBSCRIPT"CODEPAGE="936"%><%OPTIONEXPLICIT%><!DOCTYPEhtmlPUBLIC"-//W3C//D...
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<% OPTION EXPLICIT %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>访客管理</title>
</head>
<body bgcolor="#EAEAEA">
<% response.write "<table width="172" border="0"><tr><td height="15" nowrap="nowrap" bordercolor="#000000" bgcolor="#999999"> </td></tr></table>" %>
</body>
</html>
以上页面打开后就出现如下所示的错误信息,不知哪里有错
Microsoft VBScript 编译器错误 错误 '800a0401'
语句未结束
/baocheng/callrun.asp,行 12
response.write "<table width="172" border="0"><tr><td height="15" nowrap="nowrap" bordercolor="#000000" bgcolor="#999999"> </td></tr></table>"
------------------------------^ 展开
<% OPTION EXPLICIT %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>访客管理</title>
</head>
<body bgcolor="#EAEAEA">
<% response.write "<table width="172" border="0"><tr><td height="15" nowrap="nowrap" bordercolor="#000000" bgcolor="#999999"> </td></tr></table>" %>
</body>
</html>
以上页面打开后就出现如下所示的错误信息,不知哪里有错
Microsoft VBScript 编译器错误 错误 '800a0401'
语句未结束
/baocheng/callrun.asp,行 12
response.write "<table width="172" border="0"><tr><td height="15" nowrap="nowrap" bordercolor="#000000" bgcolor="#999999"> </td></tr></table>"
------------------------------^ 展开
2个回答
展开全部
<% response.write "<table width="172" border="0"><tr><td height="15" nowrap="nowrap" bordercolor="#000000" bgcolor="#999999"> </td></tr></table>" %>
这样输出是有问题的!
你可以分析一下 "<table width=" 这里在ASP中已经被理解为一段字符串了,那么它后面的ASP就没法认识了!!
有几种写法你可以用
写法一:
<% response.write "<table width='172' border='0'><tr><td height='15' nowrap='nowrap' bordercolor='#000000' bgcolor='#999999'> </td></tr></table>" %>
写法二:
<% response.write "<table width=""172"" border=""0""><tr><td height=""15"" nowrap=""nowrap"" bordercolor=""#000000"" bgcolor=""#999999""> </td></tr></table>" %>
写法三:
<% response.write "<table width=172 border=0><tr><td height=15 nowrap=nowrap bordercolor=#000000 bgcolor=#999999> </td></tr></table>" %>
建议你使用写法二
这样输出是有问题的!
你可以分析一下 "<table width=" 这里在ASP中已经被理解为一段字符串了,那么它后面的ASP就没法认识了!!
有几种写法你可以用
写法一:
<% response.write "<table width='172' border='0'><tr><td height='15' nowrap='nowrap' bordercolor='#000000' bgcolor='#999999'> </td></tr></table>" %>
写法二:
<% response.write "<table width=""172"" border=""0""><tr><td height=""15"" nowrap=""nowrap"" bordercolor=""#000000"" bgcolor=""#999999""> </td></tr></table>" %>
写法三:
<% response.write "<table width=172 border=0><tr><td height=15 nowrap=nowrap bordercolor=#000000 bgcolor=#999999> </td></tr></table>" %>
建议你使用写法二
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询