MacD Level: Big Cheese
 Registered: 06-01-2004 Posts: 19
|
Re: Datagrid Paging Problem?
Hi pal,
Try in your code behind something like:
Public Sub Display(ByVal sender As Object, ByVal e As DataGridPageChangedEventArgs)
dgData.CurrentPageIndex = e.NewPageIndex
fillDataSet()
End Sub
Where :
1. fillDataset() is the method that will be refilling your dataset.
2. Display is the method that you will be calling on your OnPageIndexChanged event
hope this will help you
____________________________
MacD
|