problem with movenext in ADODB recordset in ASP

S

shrutika

Hi,

I'm using an ADODB recordset to query a database and then displaying
results till EOF in a loop.
My problem is that, when I do recordset.movenext, sometimes the
movenext happens while sometimes the ursor is at the same location.

Please let me know what can be done to remove this problem.
 
D

Douglas J. Steele

What does your code look like? Is it possible you've got the MoveNext inside
an If condition, for instance, so that it doesn't always get invoked?
 
Top