void MeetingInfoClient_GetMeetingInfoListByFlowCompleted(object sender, GetMeetingInfoListByFlowCompletedEventArgs e)
 {
     if (e.Result != null)
     {
         SelectBox = Utility.FindChildControl <CheckBox>(DaGr, "SelectAll");
         BindDataGrid(e.Result.ToList(), e.pageCount);
     }
     else
     {
         BindDataGrid(null, 0);
     }
     loadbar.Stop();
 }
 void MeetingInfoClient_GetMeetingInfoListByFlowCompleted(object sender, GetMeetingInfoListByFlowCompletedEventArgs e)
 {       
     if (e.Result != null)
     {
         SelectBox = Utility.FindChildControl<CheckBox>(DaGr, "SelectAll");
         BindDataGrid(e.Result.ToList(), e.pageCount);
     }
     else
     {
         BindDataGrid(null, 0);
     }
     loadbar.Stop();
     
 }