Generating Pages Dynamically
|
Skilled contributor
|
![]() |
| 5May2008,05:10 | #1 |
|
How ca we generate number of pages dynamically while we are fetching data from the MS-Access database ? Like I have one asp page which is fetching a number of rows from the access database. I want to restrict per page entries to 20 only and rest are to be displayed in next pages. I have read somewhere that Recordset can be use to divide the data in Pages. Like one property is Pagecount and another is Pagelength. But I dont remember the usage. Can anybody help me in this ?
|
|
Team Leader
|
![]() |
| 5May2008,10:49 | #2 |
|
Code: SQL
|
|
Skilled contributor
|
![]() |
| 5May2008,22:25 | #3 |
|
Quote:
Originally Posted by pradeep |
|
Team Leader
|
![]() |
| 6May2008,10:12 | #4 |
|
This will help you out http://www.stardeveloper.com/article...0071001&page=1
|
|
Skilled contributor
|
![]() |
| 8May2008,02:14 | #5 |
|
CAn u help me to retrieve the data in backward manner like from 10 the post to first post. I tried it,but it says recordset doesn't support backward fetching. Can u tell me which kind of cursor support backward fetching as I am using ASP with MS Access 2000. I think by default, the cursor type is "ForwardOnly".
|
|
Team Leader
|
![]() |
| 8May2008,10:29 | #6 |
|
Keyset Cursor (adOpenKeyset – 1). It is similar to the Dynamic Cursor above except hat it does not allow access to records added by other users. It allows all types of movements through the recordset.
|
|
Go4Expert Member
|
|
| 10May2009,12:16 | #7 |
|
You can use the following SQL statement on the page:-
SELECT * FROM TABLE WHERE WHATEVER LIMIT INDEX, COUNT Check the code out. SELECT * FROM **** WHERE ******** LIMIT 0, 20 1ST PAGE SELECT * FROM **** WHERE ******** LIMIT 19, 20 2ND PAGE Regards, Akshit Soota |


