Database paging without Datagrid
-
People: I need to be display 20 records per page from a resultset using ASP.NET, since this paging requires the answers to be updated as well. Don't want to use Datagrid, since we cannot update values in a datagrid but more like only for display purposes. How would we go about doing this? Thanks
-
People: I need to be display 20 records per page from a resultset using ASP.NET, since this paging requires the answers to be updated as well. Don't want to use Datagrid, since we cannot update values in a datagrid but more like only for display purposes. How would we go about doing this? Thanks
VK-Link wrote: since we cannot update values in a datagrid Yes, you can. Anyhow, the way to do what you want is to write a stored proc that takes a page number and item count, and returns the number of pages. Then you can write your own control that shows page numbers and a current page view. Christian Graus - Microsoft MVP - C++