Hi all,
I have a gridview and have paging set to true. My grid has enough records to give 3 pages. when I click say page 2 the grid doesn't always page and often requires 2 selections before the page updates with the correct data.
The only event I have any code in is:
Code:protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e) { GridView1.PageIndex = e.NewPageIndex; }


Reply With Quote