Friday 4 October 2013

In Grid View By default the Page should contain 10 pages on click the next pages should appear

protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e)
        {
            GridView1.PageIndex = e.NewPageIndex;
            //Bind the Gridview Data here
        }

No comments:

Post a Comment