#12005/6/2 10:31:40
显示文章页下有个相关文章显示功能出现错误:
相关文章
Microsoft JET Database Engine 错误 '80040e14'
内存溢出
/lib/showart_body.asp,行43
此段源代码是:
<b>相关文章</b></font><br>
<%sql="select * from art where art_content like '%"&rs("art_keyword")&"%' and art_id <> "&rs("art_id")&" order by art_date DESC"
set rs2=server.createobject("adodb.recordset")
rs2.open sql,conn,1,1 "此即showart_body.asp,行43
do while not rs2.eof
%>
<a href="showart.asp?art_id=<%=rs2("art_id")%>&cat_id=<%=rs2("cat_id")%>"><%=rs2("art_title")%></a> <%=rs2("art_date")%><br>
<%
rs2.movenext
loop
if rs2.eof and rs2.bof then
response.write "没有相关文章"
end if
rs2.close
set rs2=nothing
%>