Click to See Complete Forum and Search --> : [RESOLVED] gridview paging problem


Bill Crawley
August 19th, 2009, 03:11 AM
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:
protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
GridView1.PageIndex = e.NewPageIndex;
}