Hi, I am trying to display 10 sets of records at once....so this is basically what I am trying to do. At the reponse.write statement, how do I specify the recordset based on the count...like rs1, rs2, rs3...etc? what is the syntax like? Also if my sql statement is select *, then how do I for example return the "title" field of the 8th row in the recordset. Thanks!
count = 0
while not rs.eof and count < 10
response.write rs <----?????
count = 0
while not rs.eof and count < 10
response.write rs <----?????