[thelist] Multi-Column Layout Not Wrapping

j s jslist at sbcglobal.net
Mon Aug 8 10:51:01 CDT 2005


Hello,
 
I'm creating a phone list page consisting of name/phone ext.  The info is coming from a database - using asp.  A multi-column layout can be produced with css - but the text isn't wrapping to the second column.
 
Here's the code I'm using: 
<P STYLE="border: ridge 1px; padding: 1em; column-count: 2; column-rule: solid black 1em; column-gap: 4em">
     <%
     rs.Movefirst
      DO WHILE NOT rs.EOF
      response.write(rs("Lname") & ", " & rs("Fname") & " / " & rs("Extension") & "<br>")
      rs.MoveNext
      LOOP     
     %></P>
 
How do I tell it to wrap to the second column?  Or is there a better way to do this with asp?
 
Jess


More information about the thelist mailing list