这是上传后出现的
总是在176报错,以下是在DW中插入的asp数据。
<ul class="webmenu_ul">
<%
sqlstr="select * from a_class where s_pai="&spai&" order by s_order asc,id asc "
Set Rs = Conn.Execute(sqlstr)
If Not Rs.Eof Then
Do While Not Rs.Eof
%>
<li <%if aid=rs("id") then%>class="mhover"<%End if%>><a href="news_list.asp?s_pai=<%=spai%>&classid=<%=RS("id")%>">⊙ <%=Rs("s_name")%> </a></li>
<%
Rs.MoveNext
Loop
End If
Rs.Close
Set Rs = Nothing
%>
</ul>
176就是这行 Set Rs = Conn.Execute(sqlstr) |