set rs=server.createobject("ADODB.RECORDSET")
SQL="select * from admin where admin_name='"&admin_name&"' and admin_pass='"&admin_pass&"'"
rs.open SQL,conn,3,3
if rs.eof then
response.write"<center>用户名和密码不匹配"
else
session("admin_name")=rs("admin_name")
response.write "manage.asp"
end if
rs.close
set rs=nothing
conn.close
set conn=nothing
end if
%>
错误类型:
ADODB.Recordset (0x800A0E7D)
连接无法用于执行此操作。在此上下文中它可能已被关闭或无效。
/coplion/admin/login.asp, 第 26 行(红色字为第26行)
我是在后面才关闭RS的啊....究竟是哪里错了?应该怎么改啊?