提交代码
This commit is contained in:
@@ -30,6 +30,10 @@ namespace FineUIPro.Web.common
|
||||
{
|
||||
project = project.Where(e => e.ProjectCode.Contains(txtProjectCode.Text.Trim())).ToList();
|
||||
}
|
||||
if (!string.IsNullOrEmpty(txtProjectName.Text))
|
||||
{
|
||||
project = project.Where(e => e.ProjectName.Contains(txtProjectName.Text.Trim())).ToList();
|
||||
}
|
||||
GridProject.RecordCount = project.Count;
|
||||
var table = GetPagedDataTable(GridProject, project);
|
||||
this.GridProject.DataSource = table;
|
||||
|
||||
Reference in New Issue
Block a user