Eric Bergman
Eric Bergman

Reputation: 1443

ASP.NET: How to create a custom Pager for GridView?

Is it possible to create a custom Pager for the GridView control of ASP.NET that looks liek this? Pager

If so, can anyone give me some ideas or some starting code into how to create it?

Thank you.

Upvotes: 0

Views: 3864

Answers (1)

Omtara
Omtara

Reputation: 3001

You just need fixed LinkButtons for previous & next and a LinkButton inside a Repeater control for the individual pages.

Have a look at this page for details: Custom Paging with the ASP.NET Repeater control

Upvotes: 1

Related Questions