sql="{call verify_user_password("& userid &",'"& password &"')}"
rs.open sql,conn,1,1
if rs.eof or rs.bof then
respond.write "no record"
end if
rs.close
Asp中调用存储过程如下: sql="{call verify_user_password("& userid &",'"& password &"')}" rs.open sql,conn,1,1 if rs.eof or rs.bof then respond.write "no record" end if rs.close 在存储过程verify_user_password 中 如果有两句以上 select 语句,它就返回多个数据集,可是我在 asp中的rs 只能得到第一个数据集,如何得