This site is no longer maintained. I am leaving it up for the time being because it still generated a lot of traffic.
Please visit my new site at http://www.FWHagen.com/weblog/
This site is no longer maintained. I am leaving it up for the time being because it still generated a lot of traffic.
Please visit my new site at http://www.FWHagen.com/weblog/
I hate seeing a solitary “1″ on the bottom of a paged datagrid because the dataset is too short to have more than one page. You don’t really want to turn off paging but suppress the “1″ when it is not needed.
Use this code to do just that when binding the grid:
if (dgEmployee.Items.Count < dgEmployee.PageSize)
dgEmployee.PagerStyle.Visible = false;