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/
Well, the new domain is finally up. FWHagen.com if you want to see it, but there is nothing there yet. I purchased the hosting account 2 weeks ago and have yet to have the domain name properly transferred to the provider.
Many years ago, ….
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;