Data retrieval and Navigation using javascript

  • Thread starter Thread starter karthick
  • Start date Start date
K

karthick

Hi,

I have a DataSet returning minimum 60 to 100 rows. I am querying the
Database and populating the DataSet with the data, no matter how big or
small the data is. What I want do is, I should be able to construct the
pages like 1 2 3 4 5 6....) etc with links, all the data from the
DataSet or an Array so that I don't have to make a round trip to the
Database when I click 2nd or 3rd page to get more data.

Can anybody suggest me how to do it ?!; and any links, resources etc.
is appreciateable.

Regards,
Karthick
 
Hi,

What are you using to display it?

If you use a datagrid you can use the pagination feature it provides.

cheers,
 
I can use DataGrid with pagination, but that's now what I want. I want
those page numbers to be clickable and see the next page instantly,
without going to the database. Should be a like a normal javascript
functionality and am thinking of usign xmlhttprequest to achieve this.
Please help.

Karthick
 
Back
Top