Posted on: 11/26/2014 4:59:40 PM | Views : 366

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 ...