Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

hide paging numbers in gridview?

Tags:

c#

asp.net

I am trying to hide paging numbers on gridview that shows on bottom of the gridview. I am using dropdown list instead of this number clicks. How can I hide them?

Please advice

like image 996
James123 Avatar asked Jan 18 '26 09:01

James123


1 Answers

According to MSDN, it's as simple as:

GridView.PagerSettings.Visible = false;
like image 96
George Johnston Avatar answered Jan 20 '26 21:01

George Johnston