参数传递不了
页面代码如下(简化后)
<%
id=request("id")
if id="" then
response.write "请从正确路径访问本站"
response.end
end if
%>
<!--#include file="mdb.asp"-->
<%
sql="select * from abc where id="&id+1
rs.open sql,conn,1,1
if rs.bof or rs.eof then
response.write "<br>该内容已经删除或者不存在"
rs.close
set rs=nothing
conn.close
set conn=nothing
response.end
end if
rs("count")=rs("count")+1
rs.update
%>
<%=rs("name")%>
<%
rs.close
set rs=nothing
conn.close
set conn = nothing
%>
数据库有内容但是用参数传递到该页面以后还是显示:该内容已经删除或者不存在
删除:if rs.bof or rs.eof then
response.write "<br>该内容已经删除或者不存在"
rs.close
set rs=nothing
conn.close
set conn=nothing
response.end
end if
以后也没有反应,甚至COUNT也不更新