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;
Remember Me
b, blockquote@cite, i, strike, strong, u
Disclaimer The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.