Learn GridView - Part II (Changing PageIndex)

in this we learn how we change the page index of the grid view.

only write the coding in Default.aspx.cs

protected void PageIndexChanging(object sender, GridViewPageEventArgs e)
{
GridView1.PageIndex = e.NewPageIndex;
BindData(); // define the coding in previous post Learn GridView - Part-I
}

0 comments: