示例#1
0
        private void GetData()
        {
            DataTable table = operationContract.ExecuteProSignIn(PubClass.userInfo.ID, ((DateTime)dtpStartDate.SelectedDate).ToString("yyyy-MM-dd"),
                                                                 ((DateTime)dtpEndDate.SelectedDate).ToString("yyyy-MM-dd"),
                                                                 _detect_station.SelectedIndex < 1 ? "" : (_detect_station.SelectedItem as Label).Tag.ToString(),
                                                                 _detect_person1.SelectedIndex < 1 ? "" : (_detect_person1.SelectedItem as Label).Tag.ToString(),
                                                                 ((_tableview.PageIndex - 1) * _tableview.RowMax).ToString(), _tableview.RowMax.ToString());

            _tableview.Table = table;
        }