Is it possible to insert information into the gridview’s pager, like “Showing 10 of 55 items (You are on page 3)” and bind that information accordingly to the actual PageCount and PageSize properties?
I can only think of doing it outside the pager, even outside the GridView.
You can use the PagerTempate-property:
…
You can also make your custom Griview which inherites from the standard Griview. Then you can override the
InitializePager-method:I’ve just pasted some bits of my code together here, so I don’t know if this code snippet works but it should give you a good indication of how you can override the
InitializePager-method! 🙂