你的思路可能有点问题,rs_a.update 就是说你要在ASP进行更新喽...?不太明白
建议你把rs_a 的查询改成 存储过程方式的调用,在取得记录集后,在存储过程更新,rs_b就没关系了。
比如:
create proc your_rs_a 
as
select ... from your_table where 条件
if @@rowcount >0
  update your_table set ... where 条件go