Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Paging using more than one recordset

Status
Not open for further replies.

YAmoah

Technical User
Nov 7, 2000
12
US
Is it possible to implement paging using two recordsets. If so, how would I do it?

Amoah
 
What do you mean? If you want to page through two different recordsets, in two different tables, that's no problem. Just have each recordset look for a different start page variable.

Ex:
dim start1, start2

start1 = Request.QueryString("startPg1") 'start pg for rs1
start2 = Request.QueryString("startPg2") 'start pg for rs2

if you need more help, post back

leo

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top