Paging of Datagrid cannot work
In my datagrid i had set the paging to it. When the record go to next page, i cannot view it by click the next button, it keep on show me the 1st page record.
How to solve this problem? Thanks.
I use SqlDataAdapter and Dataset to bind the data into datagrid
da.Fill(ds)
DataGrid1.DataSource = ds
DataGrid1.DataBind()
|