jon24422531
Technical User
Hi
I am returning a recordset that has around 100 records. This should not vary by more than 20 either way. I want to create a check box for each record:
Is it possible to split these into columns as in
<td>25 records</td><td>25 records</td><td>25 records</td><td>25 records</td>
Or even better, to total the number of records and divide by 4 to create an even column layout.
Thanks
Jonathan
I am returning a recordset that has around 100 records. This should not vary by more than 20 either way. I want to create a check box for each record:
Code:
Response.Write "<td><small><INPUT NAME=""EmailXtra"" TYPE=""CHECKBOX"" VALUE=" & rs.fields.item("Email").Value & ">" & rs.fields.item("UserFullName").Value & "</small></td>"
<td>25 records</td><td>25 records</td><td>25 records</td><td>25 records</td>
Or even better, to total the number of records and divide by 4 to create an even column layout.
Thanks
Jonathan