This commit is contained in:
geh 2025-08-11 16:02:24 +08:00
parent c68f8c7150
commit fb2d93cbdf
1 changed files with 8 additions and 1 deletions

View File

@ -272,7 +272,14 @@ namespace FineUIPro.Web.CQMS.ProcessControl
Response.ContentType = "application/excel"; Response.ContentType = "application/excel";
Response.ContentEncoding = System.Text.Encoding.UTF8; Response.ContentEncoding = System.Text.Encoding.UTF8;
this.Grid1.PageSize = this.Grid1.RecordCount; this.Grid1.PageSize = this.Grid1.RecordCount;
this.BindGvInspectionManagement(null); if (this.drpCNProfessional.SelectedValue !=BLL.Const._Null)
{
BindGvInspectionManagement(this.drpCNProfessional.SelectedValue);
}
else
{
BindGvInspectionManagement(null);
}
Response.Write(GetGridTableHtml(Grid1)); Response.Write(GetGridTableHtml(Grid1));
Response.End(); Response.End();
} }