asp问题,请高手帮忙看看这段代码 急..在线等

<%Ifrs("photo_x_flag")=1andrs("photo_d_flag")=1Then'大小都有response.write"<table><tr><td... <%
If rs("photo_x_flag")=1 and rs("photo_d_flag")=1 Then'大小都有
response.write"<table>
<tr>
<td><a href=photo/"&rs("photo_d")&" target=_blank><img src=photo/"&rs("photo_x")&" width=100 height=75 border=0 hspace=4 vspace=4 alt=网名:"&rs("username")&"></a></td>
</tr>
<tr>
<td><a href=Display.asp?MemberID="&rs("id")&" target=_blank class=6hui_l>"&htmlout(ChkBadWords(rs("username")))&"</a></td>
</tr>
</table>"

ElseIf rs("photo_x_flag")=1 and rs("photo_d_flag")=0 Then'有小无大
response.write "<table>
<tr>
<td><a href=photo/"&rs("photo_x")&" target=_blank><img src=photo/"&rs("photo_x")&" width=100 height=75 border=0 hspace=4 vspace=4 alt=网名:"&rs("username")&"></a></td>
</tr>
<tr>
<td><a href=Display.asp?MemberID="&rs("id")&" target=_blank class=6hui_l>"&htmlout(ChkBadWords(rs("username")))&"</a></td>
</tr>
</table>"
ElseIf rs("photo_d_flag")=1 and rs("photo_x_flag")=0 Then'有大无小
response.write "<table>
<tr>
<td><a href=photo/"&rs("photo_d")&" target=_blank><img src=photo/"&rs("photo_d")&" width=100 height=75 border=0 hspace=4 vspace=4 alt=网名:"&rs("username")&"></a></td>
</tr>
<tr>
<td><a href=Display.asp?MemberID="&rs("id")&" target=_blank class=6hui_l>"&htmlout(ChkBadWords(rs("username")))&"</a></td>
</tr>
</table>"
end if
%>

错误类型:
Microsoft VBScript 编译器错误 (0x800A0409)
未结束的字符串常量
/wr/ceshi/index.asp, line 310, column 24
response.write"<table>
-----------------------^
到底错在哪里啊?怎么修改
呵呵,问题我自己决绝了,response.write ""里面不能有断行
展开
 我来答
qdsjia
2007-08-08
知道答主
回答量:29
采纳率:0%
帮助的人:21.4万
展开全部
response.write "" 中的字符串不能换行,ASP的语句和VB一个道理,同一个语句不能换行。
字符串很大的话可以做以下更改:
<%
If rs("photo_x_flag")=1 and rs("photo_d_flag")=1 Then'大小都有
%>
<table>
<tr>
<td><a href=photo/<%=rs("photo_d")%> target=_blank><img src=photo/<%=rs("photo_x")%> width=100

height=75 border=0 hspace=4 vspace=4 alt=网名:<%=rs("username")%>></a></td>
</tr>
<tr>
<td><a href=Display.asp?MemberID=<%=rs("id")%> target=_blank class=6hui_l><%=htmlout(ChkBadWords(rs("username")))%></a></td>
</tr>
</table>
<%ElseIf rs("photo_d_flag")=1 and rs("photo_x_flag")=0 Then%>
<table>
<tr>
<td><a href=photo/<%=rs("photo_x")%> target=_blank><img src=photo/<%=rs("photo_x")%> width=100 height=75 border=0 hspace=4 vspace=4 alt=网名:<%=rs("username")%>></a></td>
</tr>
<tr>
<td><a href=Display.asp?MemberID=<%=rs("id")%> target=_blank class=6hui_l><%=htmlout(ChkBadWords(rs("username")))%></a></td>
</tr>
</table>
<%ElseIf rs("photo_d_flag")=1 and rs("photo_x_flag")=0 Then'有大无小 %>
<table>
<tr>
<td><a href=photo/<%=rs("photo_d")%> target=_blank><img src=photo/<%=rs("photo_d")%> width=100 height=75 border=0 hspace=4 vspace=4 alt=网名:<%=rs("username")%>></a></td>
</tr>
<tr>
<td><a href=Display.asp?MemberID=<%=rs("id")%> target=_blank class=6hui_l><%=htmlout(ChkBadWords(rs("username")))%></a></td>
</tr>
</table>
<%
end if
%>
倾听飞扬
2007-08-08 · TA获得超过440个赞
知道小有建树答主
回答量:250
采纳率:0%
帮助的人:224万
展开全部
代码都不清楚怎么写的

把我的复制去试试
<%
If rs("photo_x_flag")=1 and rs("photo_d_flag")=1 Then'大小都有
response.write"<table><tr> <td><a href=photo/"&rs("photo_d")&" target=_blank><img src=photo/"&rs("photo_x")&" width=100 height=75 border=0 hspace=4 vspace=4 alt=网名:"&rs("username")&"></a></td> </tr> <tr> <td><a href=Display.asp?MemberID="&rs("id")&" target=_blank class=6hui_l>"&htmlout(ChkBadWords(rs("username")))&"</a></td> </tr> </table>"

ElseIf rs("photo_x_flag")=1 and rs("photo_d_flag")=0 Then'有小无大
response.write "<table> <tr> <td><a href=photo/"&rs("photo_x")&" target=_blank><img src=photo/"&rs("photo_x")&" width=100 height=75 border=0 hspace=4 vspace=4 alt=网名:"&rs("username")&"></a></td> </tr> <tr> <td><a href=Display.asp?MemberID="&rs("id")&" target=_blank class=6hui_l>"&htmlout(ChkBadWords(rs("username")))&"</a></td> </tr> </table>"
ElseIf rs("photo_d_flag")=1 and rs("photo_x_flag")=0 Then'有大无小
response.write "<table> <tr> <td><a href=photo/"&rs("photo_d")&" target=_blank><img src=photo/"&rs("photo_d")&" width=100 height=75 border=0 hspace=4 vspace=4 alt=网名:"&rs("username")&"></a></td> </tr> <tr> <td><a href=Display.asp?MemberID="&rs("id")&" target=_blank class=6hui_l>"&htmlout(ChkBadWords(rs("username")))&"</a></td> </tr> </table>"
end if
%>

你用我的代码提示是哪里的错误啊?
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
古道西風瘦馬
2007-08-08 · TA获得超过157个赞
知道小有建树答主
回答量:130
采纳率:0%
帮助的人:76.8万
展开全部
这个文件/wr/ceshi/index.asp,的310行的第24个字符,少了个双引号.
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
媒办法
2007-08-08 · TA获得超过606个赞
知道小有建树答主
回答量:834
采纳率:0%
帮助的人:1001万
展开全部
错误信息提示:
第310行
response.write"<table> --------这行最后少了个双引号。加上就好了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式