/// <summary> /// 绑定Staff信息的数据源 /// </summary> private void BindSource(Staff staff, int start) { DataTable table; StaffProvider provider = new StaffProvider(); table = provider.GetRoleAll(staff, start, this.ListPager1.PageSize); this.GridView1.DataSource = table.DefaultView; this.GridView1.DataBind(); }