Hi I have a webform which uses a gridview control to show result of a search operation.
I wanna to take advantage of using pagination in the webform. But as you all know, gridview pagination is a client-side pagination and it transfers all records have been selected to the client. What I mean by client-side pagination is the client (page) shows records page by page but every time the user clicks on a page link to navigate through records, all the records are selected from Data Source.
How can I use gridView with datapager in order to have a server side pagination? Or any other solution to get records page by page by configuring our query?