Web Wiz - Green Windows Web Hosting

  New Posts New Posts RSS Feed - 2 col of dynamic data for record paging
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

2 col of dynamic data for record paging

 Post Reply Post Reply
Author
ngaisteve1 View Drop Down
Groupie
Groupie
Avatar

Joined: 26 December 2002
Location: Malaysia
Status: Offline
Points: 169
Post Options Post Options   Thanks (0) Thanks(0)   Quote ngaisteve1 Quote  Post ReplyReply Direct Link To This Post Topic: 2 col of dynamic data for record paging
    Posted: 11 December 2003 at 12:52am

I have these little code:

<%
 ' Loop through our records and ouput 1 row per record
 iRecordsShown = 0      
 DO WHILE iRecordsShown < iPageSize AND NOT rs.eof           
  response.write "<tr valign=top><td>" & rs("ProductCat") & "&nbsp;</td>"
  response.write "<td><input type='checkbox' id=" & rs("ProductCatID") & " name='list' value=" & rs("ProductCatID") & " ></td>"
  ' Increment the number of records we've shown
  iRecordsShown = iRecordsShown + 1
  rs.MOVENEXT
 LOOP
%>

The enhancement I want to make it to have 2 column instead of one column, so that I can save up empty space. How do I do it? Thanks.



Edited by ngaisteve1
Back to Top
fernan82 View Drop Down
Mod Builder Group
Mod Builder Group
Avatar

Joined: 17 November 2002
Location: United States
Status: Offline
Points: 362
Post Options Post Options   Thanks (0) Thanks(0)   Quote fernan82 Quote  Post ReplyReply Direct Link To This Post Posted: 11 December 2003 at 1:10am
<%
 ' Loop through our records and ouput 1 row per record
 iRecordsShown = 0      
 DO WHILE iRecordsShown < iPageSize AND NOT rs.eof           
  response.write "<tr valign=top><td>" & rs("ProductCat") & "&nbsp;</td>"
  response.write "<td><input type='checkbox' id=" & rs("ProductCatID") & " name='list' value=" & rs("ProductCatID") & " ></td>"
  iRecordsShown = iRecordsShown + 1
  rs.MoveNext

  If Not rs.EOF Then
<td>" & rs("ProductCat") & "&nbsp;</td>"
  response.write "<td><input type='checkbox' id=" & rs("ProductCatID") & " name='list' value=" & rs("ProductCatID") & " ></td>"
  ' Increment the number of records we've shown
  iRecordsShown = iRecordsShown + 1
  rs.MOVENEXT
  Else
   Response.Write("<td>&nbsp;</td><td>&am p;nbsp;</td>")
  End If
 LOOP
%>
FeRnAN
Back to Top
ngaisteve1 View Drop Down
Groupie
Groupie
Avatar

Joined: 26 December 2002
Location: Malaysia
Status: Offline
Points: 169
Post Options Post Options   Thanks (0) Thanks(0)   Quote ngaisteve1 Quote  Post ReplyReply Direct Link To This Post Posted: 11 December 2003 at 2:13am
. It works! Thank you very much.
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.