Search Tools Links Login

Display database results in 'pages'


Many a time I found myself needing to display results in 'page' form. And call me old fashioned, devoted to learning or just plain stoopid, but I'd much rather learn how to code something myself than just plug in variables and let a snotty frontpage wizard do it for me.
So, here it is, simple code to divide records into 'pages' of your choosing.

Original Author: Tim Feeley

Inputs

I'm assuming that you have a database that will be used as an input. This will be discussed in the code.

Assumptions

There are a number of assumptions (basically page, table and database names), but they're noted in the code and are easy to customize.

Returns

A pretty paged list of entries :)

Side Affects

Drowsiness (or at least I was after taking the time to code it..)

API Declarations

Free. Take it. Don't credit me. See if I care. Hrmpf.

Code

<%
  'Initialize the data environment using ADO.
  set DBView = Server.CreateObject("ADODB.Recordset")
  'DSN smells. I use a connection on a folder in my webpage.
  'simply replace the connection string with your own path/DSN.
  DBView.ActiveConnection = "Driver={Microsoft Access Driver (*.mdb)};DBQ=c:/inetpub/wwwroot/fpdb/blarp.mdb"
  
  ' MUCHOS IMPORTANT! The main function (RecordSet) will not work
  ' if you omit this statement. Resist the urge to delete it!
  DBView.cursortype = 1
  ' Do not delete the above line or your recordset will always return -1.
  ' This is the SQL, replace it with your own
  ' (from is in brackets because i was a d0pe and made it my
  ' field name, so I needed to distinguish that i KNEW my syntax,
  ' and that it's only a field name.)
  DBView.Source = "SELECT [from], subject, date, message FROM messages ORDER BY Date DESC"
  DBView.Open
  ' When the user navigates using the page list, it makes the querystring page=1,2,etc.
  ' This will determine the page
  pgs = request.querystring("page")
  ' If it's blank, set it to one.

  if pgs = "" then pgs = 1 : rpg = 1

  ' RPG is basically a silly variable i came up with that
  ' is discontinued in this edition of my code. But you can keep it.
  rpg = pgs
  ' This is used to determine how far to move in the recordset.
  pgs = ((pgs - 1) * 5) +1
  ' We're only going to view 5 at a time (which is why 5 is there)
  ' You can change that number to whatever you want, just make sure to
  ' do it in the points ahead.
  ' Also, we're keeping a 'Curre' counter to determine how many records
  ' we've displayed. After it's reached 5 (or whatever you want), we're stopping.
  Curre = 0
  ' Okay, let's loop (if we're not at the end of the file.)

  if not DBView.EOF Then
  ' We're moving it to the record of the page we're starting from.
  DBView.Move (pgs - 1)

  ' Change this 5 to whatever you want. Remember 'Curre' is just
  ' how far we looped THIS time.
  While curre < 5 and not DBView.EOF
'Basically, display the repeated results. I included my table here, but feel free to modify it with your own fields.
%>
  
  <%=(DBView("Subject"))%>
  
  
  By: <%=(DBView("from"))%>
Date: <%=(DBView("Date"))%>
  
  
  <%=(DBView("Message"))%>

  
  
<% DBView.MoveNext
  curre = curre +1
  wend
  ' Keep looping and moving records until we reach 5 records per page,
  ' or the end of the file. This End If ends the checking if we're at the End of the file.

end if
%>
  < finish your HTML repeating reigon here, for example, close your table >
  
  Messages: <%=pgs%>-<%=pgs+(curre-1)%> of <%=(DBView.RecordCount)%>
  
   <%
   ' Okay, a few things. The HTML line with ASP 'embedded' displays what we're looking at. We start at the pgs number (the beginning record)
   ' for example, 10 or 15. We're then adding how many records we could show to that number to get the end of the range. If all 5 cound be
   ' shown, we'll add 5, if not, we'll add just what we displayed.
pqs = request.querystring("page")
if pqs = "" then pqs = 1
   ' What page are we on again? The above code checks it. The code below this checks how many pages we'll need to fit all the data.
   ' Change all the 5's to whatever number you want.

pages = int(dbview.recordcount 5)
if dbview.recordcount mod 5 <> 0 then pages = pages + 1
   ' This code takes the numeric portion of the records divided by five, for example, if we had 7 records this would be 1.
   ' We then see if there's any left over data by using Mod and if so, add another page to accomodate it.
   ' Start displaying it.
response.write("Pages: [")
   ' Loop through all the page numbers.
For AI = 1 to pages
   ' I used a bunch of IF's when debugging. If it bothers you, add an Else :P
   ' We just check to see if pqs (the variable used above to determine what page is being viewed) matches the loop
   ' if so, don't add a hyperlink.
if Cint(AI) = cint(pqs) then response.write "   " & ai & "   "
if cint(AI) <> cint(pqs) then response.write "   " & ai & "   "
Next

response.write ("]")
   ' That's it. Note how in the link code, the page is blarp.asp. Change this with your own or you'll have a sad broken link.
%>

About this post

Posted: 2002-06-01
By: ArchiveBot
Viewed: 99 times

Categories

ASP/ HTML

Attachments

No attachments for this post


Loading Comments ...

Comments

No comments have been added for this post.

You must be logged in to make a comment.