Hi,
Simply we will learn here how to Apply Pagination in GridView Control of ASP.NET.
Directly to Code:
In ASPX page, enable paging in GridView.

[html]

[/html]
In Above Code, we Automatically Generated Columns from DataSource Then AllowPaging = True, so that GridView Data can be Paged, Also We defined PageSize that what amount of Records whould display in Page.
To Apply Pagination, RIght Click in GridView and Choose Properties > Events. Choose PageIndexChanged event and Place Following code in ASPX.CS Page.
[csharp]protected void gvAllPOD_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
gvAllPOD.PageIndex = e.NewPageIndex;
BindGVAllPOD();
}
[/csharp]
Now Check on your Page. What is Happening on Clicking Page Number. You can comment if some queries on above code.
John Bhatt

Related Posts

Leave a Reply

This website uses cookies to improve your experience. We'll assume you're ok with this, but you can opt-out if you wish. Accept Read More

Adblock Detected

Please support us by disabling your AdBlocker extension from your browsers for our website.