views:

283

answers:

3

i have a page that displays large datasets into html tables. how can i add paging without having to refresh the whole page each time i change pages

A: 

There are many different ways to do this, here is 1 method using jQuery
http://9lessons.blogspot.com/2009/09/pagination-with-jquery-mysql-and-php.html

jasondavis
+1  A: 

Basically you just need a page for your form submission, and given the search criteria and a page number, it just returns the next page, preferably as a json result, so you can just change the cells in the current table, which will be faster to render.

It appears this is an example of what you want: http://encosia.com/2008/08/20/easily-build-powerful-client-side-ajax-paging-using-jquery/

James Black
A: 

This one is pretty good..even though with .net 3.5 you could make the service restful. LINK

Perpetualcoder
(-1) It's the same as @James.
Eran Betzalel