Web Wiz - Green Windows Web Hosting

  New Posts New Posts RSS Feed - How To View Data Separate
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

How To View Data Separate

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

Joined: 05 September 2008
Location: Kuantan
Status: Offline
Points: 4
Post Options Post Options   Thanks (0) Thanks(0)   Quote sky Quote  Post ReplyReply Direct Link To This Post Topic: How To View Data Separate
    Posted: 17 September 2008 at 11:24pm
Hi there..i need some help
 
this is the code:
 
<html>
<body>
<%
set conn=Server.CreateObject("ADODB.Connection")
conn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & server.MapPath("users.mdb")
set rs = Server.CreateObject("ADODB.recordset")
sql="SELECT  USERNAME, TOPIC FROM usercomment"
rs.Open sql, conn
%>
</div>
<table width="50%" border="1" align="center" bgcolor="#CCCCCC">
  <tr>
  <%for each x in rs.Fields
     response.write("<th align='center' bgcolor='#b0c4de'>" & x.name & "</th>")
  next%>
  </tr>
  <%do until rs.EOF%>
    <tr>
    <%for each x in rs.Fields%>
      <td><%Response.Write(x.value)%></td>
    <%next
    rs.MoveNext%>
    </tr>
  <%loop
  rs.close
  conn.close%>
</table>
</body>
</html>
 
This code will bring the result where all the data show in one table..i want the data show one by one but still in the same page and how to set the data so that the data only show 10 records in one page..
Please somebody help me...
 
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.