How do I create three columns with the following coded. I must have a do while loop because there are many records?
I can use a for each or do while loop - either will work.
Example:
do {
<tr>
<td><%= Record1</td>
<td><%= Record2</td>
<td><%= Record3</td>
</tr>
} while(recordSet.next());
&n ...
Go to the complete details ...