Hi All,
I'm new to this forum, so please bare with me if I make "stupid" mistakes...
I've been trying to find information about having multiple queries in a single ASP page.
Codes I've got:
strSQL = "SELECT * FROM table1, table2"
...
...
do until rs.EOF
...
<show records from table 1>
<show records from table 2>
...
rs.MoveNext
loop
rs.close
...
But when I run the page, it doesn't finish one table then move onto another table. it just runs 1 record of the first table then move onto the 1st record of 2nd table and loop from there.
is there a way I can display all the records from 1 table before moving onto another table?
If I can get some guidelines from you geniuses out there, that'll be very much appreciated!!
Many Thanks,
Knockem
I'm new to this forum, so please bare with me if I make "stupid" mistakes...
I've been trying to find information about having multiple queries in a single ASP page.
Codes I've got:
strSQL = "SELECT * FROM table1, table2"
...
...
do until rs.EOF
...
<show records from table 1>
<show records from table 2>
...
rs.MoveNext
loop
rs.close
...
But when I run the page, it doesn't finish one table then move onto another table. it just runs 1 record of the first table then move onto the 1st record of 2nd table and loop from there.
is there a way I can display all the records from 1 table before moving onto another table?
If I can get some guidelines from you geniuses out there, that'll be very much appreciated!!
Many Thanks,
Knockem
