Paging through a recordset
by Daniel Adrian
Skill level: Beginner
First posted: Monday, October 09, 2000
Paging through a recordset
When I want to develop an application with a lot of records to show, I make pages so I can easily navigate
through the database and make the page look good and load quickly.
This can be done very easily. Shall we start?
Take a look at these next lines of code:
If Request.QueryString("Page") = "" Then
Page = 1
El...[ 查看全文 ]