Web Wiz - Green Windows Web Hosting

  New Posts New Posts RSS Feed - how to display data in 3 columns by 4 rows format
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

how to display data in 3 columns by 4 rows format

 Post Reply Post Reply
Author
angkorboy View Drop Down
Newbie
Newbie
Avatar

Joined: 02 September 2005
Status: Offline
Points: 29
Post Options Post Options   Thanks (0) Thanks(0)   Quote angkorboy Quote  Post ReplyReply Direct Link To This Post Topic: how to display data in 3 columns by 4 rows format
    Posted: 28 June 2010 at 9:16am
Hi! 

I am new asp developer and want to set things in 3 column and display 4 rows in each column

How is the code ? Does code below need to add more ???

<%@ LANGUAGE = "VBScript"%>
<%
'open a database connection
Set dataconnection = Server.CreateObject("ADODB.Connection")
dataconnection.Open "DSN=yourDSNhere"
Response.Write "<html><body>"
'execute your select statement
query = "SELECT * FROM TABLE"
Set rs = dataconnection.Execute(query)
'If there are records in table
If Not rs.EOF Then
Response.Write"<table border=1>"
LinkCount = 0
' Do until the end of all records
Do Until rs.EOF
'change 5 to any number of columns you like 
  If LinkCount Mod 3 = 0 Then
If LinkCount <> 0 Then Response.Write"</tr>"
Response.Write"<tr><td>"&rs("NAME")&"<br>"&rs("DESCRIP")&"</td>"
Else
Response.Write"<td>"&rs("NAME")&"<br>"&rs("DESCRIP")&"</td>"
End If
 
LinkCount = LinkCount + 1
'loop till end of records
rs.MoveNext
Loop
Response.Write"</tr></table>"
'Close 
rs.Close
Set rs = Nothing
Else 

'Write no records in there are no records
Response.Write"Sorry, no records were found!"
Back to Top
 Post Reply Post Reply

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.08
Copyright ©2001-2026 Web Wiz Ltd.


Become a Fan on Facebook Follow us on X Connect with us on LinkedIn Web Wiz Blogs
About Web Wiz | Contact Web Wiz | Terms & Conditions | Cookies | Privacy Notice

Web Wiz is the trading name of Web Wiz Ltd. Company registration No. 05977755. Registered in England and Wales.
Registered office: Web Wiz Ltd, Unit 18, The Glenmore Centre, Fancy Road, Poole, Dorset, BH12 4FB, UK.

Prices exclude VAT at 20% unless otherwise stated. VAT No. GB988999105 - $, € prices shown as a guideline only.

Copyright ©2001-2026 Web Wiz Ltd. All rights reserved.