Hi,
I have two recordsets and I need to populate the data from those recordsets into the HTML table.
HTML table should have three columns.
First two columns are populated out of the first recordset:
First Recordset looks like that:
Transit Desktops
100 5
200 3
The third column should be populated from the second recordset.
Second recordset looks like that:
Transit Laptops
100 3
200 1
So the HTML table should finally look like that:
Transit Desktops Laptops
100 5 3
200 3 1
Please suggest how should I loop through those recordsets in order to create the table above.
I'd appreciate your help
THanks.
I have two recordsets and I need to populate the data from those recordsets into the HTML table.
HTML table should have three columns.
First two columns are populated out of the first recordset:
First Recordset looks like that:
Transit Desktops
100 5
200 3
The third column should be populated from the second recordset.
Second recordset looks like that:
Transit Laptops
100 3
200 1
So the HTML table should finally look like that:
Transit Desktops Laptops
100 5 3
200 3 1
Please suggest how should I loop through those recordsets in order to create the table above.
I'd appreciate your help
THanks.