| Author: loki 06 Oct 2008 | Member Level: Bronze | Rating:   Points: 3 |
Hi,
Add the Event for the grid as shown
protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e) { GridView1.PageIndex = e.NewPageIndex; GridView1.DataBind(); }
You can also set the property called EnableSortingAndPagingCallbacks=true to the gridview.
happy coding, Loki.
|