Wrapping list in multiple columns

S

Steven K

Hello,

I have long list of names that I would like to wrap across multiple columns
(like a newspaper). Are there any suggestions on how to go about this?
 
R

Ray at

Here's a simple example that should give you an idea:




<table>
<tr>
<td>
<%
BreakAt = 20
For iCounter = 1 to 100
response.write iCounter & "<br />"
If iCounter Mod BreakAt = 0 Then response.write "</td><td>"
Next
%>
</td>
</tr>
</table>

Ray at work
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top