Datagrid paging in vb.net
Windows Forms
2
Posts
2
Posters
2
Views
1
Watching
-
-
I am guessing you are using ASP.NET wne you say paging?? If yes you can view this article: http://www.codeproject.com/useritems/Custom\_Paging.asp Even you are in Windows form, you can use the same Stored procedure techniques to get the data for paging. If you want to do Datagrid inbuilt paging, its easy, the worst part of it is it loads all the data at the same time. Just in DataGrid property say: paging = true and pageSize = ? That will do. I prefer custom paging, good for large data.