错误'800a041f' 错误的 'Next'.请asp达人帮忙解决。
发布网友
发布时间:2024-05-02 00:53
我来回答
共2个回答
热心网友
时间:2024-09-28 04:07
说点实际的
这个错误一般是 你的 next 位置不对 或者是 next和if判断语句嵌套的不对,你仔细检查下 看有没有哪里多了 或者少了 end if
另外,还发现了个错误就是
<%if rs.eof then
response.write ("<td height=21></td>")
response.write ("<td height=21></td>")
response.write ("<td height=21></td>")
response.write ("<td height=21></td>")
response.write ("<td height=21></td>")
response.write ("<td></td>")
else%>
<td height="25" width="20%" class=td2 ><%if rs("user_QQ")<>"" then%>
<a href="tencent://message/?uin=<%=rs("user_QQ")%>&Site=<%=rs("user_names")%>&Menu=yes" style="float:right;"><img alt="<%=rs("user_names")%>" src="http://wpa.qq.com/pa?p=1:<%=rs("user_QQ")%>:5" border="0" /></a>
<%end if%>
这块 这样写是错误的写法 可以这样写
<%if rs.eof then
response.write ("<td height=21></td>")
response.write ("<td height=21></td>")
response.write ("<td height=21></td>")
response.write ("<td height=21></td>")
response.write ("<td height=21></td>")
response.write ("<td></td>")
else%>
<td height="25" width="20%" class=td2 ><%if rs("user_QQ")<>"" then%>
<a href="tencent://message/?uin=<%=rs("user_QQ")%>&Site=<%=rs("user_names")%>&Menu=yes" style="float:right;"><img alt="<%=rs("user_names")%>" src="http://wpa.qq.com/pa?p=1:<%=rs("user_QQ")%>:5" border="0" /></a>
<img src="skins/images/plus2.gif" width="9" height="9"> <%=num%> <%=rs("user_names")%> </td>
<td height="25" class="td2" width="10%"><%=rs("photo_year")%> 年</td>
<td height="25" class="td2" width="10%"><%=rs("photo_month")%> 月</td>
<td height="25" class="td2" width="10%"><%=rs("photo_time")%> 日</td>
<td height="25" class="td2" width="10%"><%=rs("birthday")%></td>
<td width="50%" class="td2"><a href="javascript:onHelp('UD_VIP.asp?User_id=<%=rs("User_id")%>&action=addguest&list=1',700,700,'both');"><font color="#009900"><u>查看留言记录</u></font></a> | <a href="UD_VIP.asp?User_id=<%=rs("User_id")%>&action=permission"><font color="#000066"><u>修改(查看)资料</u></font></a> | <a href="VIP_Save.asp?User_id=<%=rs("User_id")%>&action=del"><font color="#FF0000"><u>删除</u></font></a></td>
</tr>
<%end if%>
热心网友
时间:2024-09-28 04:08
忙了半天,终于好了。呵呵。