1019-gaofei

This commit is contained in:
gaofei 2021-10-19 12:24:38 +08:00
parent 9cdd25128d
commit b0dda3b8b2
1 changed files with 4 additions and 4 deletions

View File

@ -254,11 +254,11 @@ namespace FineUIPro.Web.JDGL.Check
listStr.Add(new SqlParameter("@ProjectId", this.CurrUser.LoginProjectId));
SqlParameter[] parameter = listStr.ToArray();
DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter);
Grid6.RecordCount = tb.Rows.Count;
Grid7.RecordCount = tb.Rows.Count;
//tb = GetFilteredTable(Grid1.FilteredData, tb);
var table = this.GetPagedDataTable(Grid6, tb);
Grid6.DataSource = table;
Grid6.DataBind();
var table = this.GetPagedDataTable(Grid7, tb);
Grid7.DataSource = table;
Grid7.DataBind();
}
#region