I have these little code:
<% ' Loop through our records and ouput 1 row per record iRecordsShown = 0 DO WHILE iRecordsShown < iPageSize AND NOT rs.eof response.write "<tr valign=top><td>" & rs("ProductCat") & " </td>" response.write "<td><input type='checkbox' id=" & rs("ProductCatID") & " name='list' value=" & rs("ProductCatID") & " ></td>" ' Increment the number of records we've shown iRecordsShown = iRecordsShown + 1 rs.MOVENEXT LOOP %>
|
The enhancement I want to make it to have 2 column instead of one column, so that I can save up empty space. How do I do it? Thanks.
Edited by ngaisteve1