如何实现文章评论
我做了一个同事显示某篇文章与其评论的网页,但是却出现错误提示:ADODB.Field (0x80020009)BOF 或 EOF 中有一个是“真”,或者当前的记录已被删除,所需的操作要求一个当前的记录。
我现在发一下我的相关代码:
文章显示代码(带有一个hits阅读次数的功能):
<%
id = trim(request.querystring("id"))
set rsX=server.createobject("adodb.recordset")
ConnX.Execute ("Update xinqingyizhan Set hits=hits+1 Where id=" & Request("id"))
if id<>"" and isnumeric(id)then
id = clng(id)
else
response.write("非法访问")
response.end
end if
sql="select hits,biaoti,ID,neirong,faburiqi,chuchu from xinqingyizhan where id=" & id
rsX.open sql,connX,1,1
%>评论读取代码:
<%
set rsXpl=server.createobject("adodb.recordset")
sql="select * from xinqingyizhanpl where plid=" & id
rsXpl.open sql,connXpl,1,1
%>
请帮忙解决一下两天了没有解决呢 我知道这个应该是简单问题 哎·~难着不会,会者不难 啊~~!!