ASP.NET: Paging in Grid View
Paging in ASP.NET Gridview is very simple. To enable paging in a gridview follow the below steps, 1. Go to Gridview's Propertie...
https://www.programming-free.com/2012/09/aspnet-custom-paging-in-grid-view.html
Paging in ASP.NET Gridview is very simple.
Please leave your comments and queries about this post in the comment sections in order for me to improve my writing skills and to showcase more useful posts. Thanks for reading this!!
To enable paging in a gridview follow the below steps,
1. Go to Gridview's Properties and Set "Allow Paging" property to "True".
2. Specify the number of rows a single page should contain in the "PageSize" property.
3. Write the below code in the Gridview's PageIndexChanging event.
protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e) { GridView1.PageIndex = e.NewPageIndex; //Code to bind datasource GridView1.DataBind(); } }
Sample GridView with Paging Enabled
Please leave your comments and queries about this post in the comment sections in order for me to improve my writing skills and to showcase more useful posts. Thanks for reading this!!