I'll add a jpg to this post. showing the situation now and the wanted situation.
Main Topics
Browse All TopicsHi Experts,
I've got this page (see beneath) that fils a table with pictures and links. And it goes on putting links in this table for as many links there are in the database. But can this be done in two collums? instead of in one collum beneath each other?
And how can this be done?
Thanks,
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Something like this?
'figure out the math for the number of records per column
'change intColumns to the number of columns that you want in the table
dim intColumns, intRecords
'change the intColumns value to the number of desired columns
intColumns = 2
intRecords = round(objRS.recordcount/in
if intRecords * intColumns < objRS.recordcount then
intrecords = intrecords + 1
end if
'write out the table
Response.Write("<Table Border=1 cellpadding=2 cellspacing=2>")
response.write("<tr>")
do while not objRS.EOF
response.write("<TD valign=top>")
for h = 1 to intRecords
if objRS.EOF then
exit for
end if
for j=0 to objRS.Fields.count-1
Response.Write(objRS(j).Va
next
response.write("<br>")
objRS.MoveNext
next
response.write("</td>")
loop
Response.write("</tr>")
Response.Write("</Table>")
Business Accounts
Answer for Membership
by: carrzkissPosted on 2009-03-09 at 10:27:32ID: 23838172
what do you mean by:
Column beneath each other?
Can you provide a demo of what you are wanting it to look like?
And then we can better assist you in getting this done.
Carrzkiss