ok -
i'm a little confused. Where are you trying to get the number of records, in the stored proc or on the ASP page?
in the stored proc, dianal is right by saying that @@ROWCOUNT will work.
On the ASP page you can use my method and it should return what you need, again as long as your cursor supports movement.
ex:
'assuming you have imported ADOVBS.inc again
'check FAQ333-618 for cursor info
oRs1.CursorType = adOpenStatic
i hope this helps
leo