diff --git a/.gitignore b/.gitignore index 8ba938c0..6dc12731 100644 --- a/.gitignore +++ b/.gitignore @@ -38,3 +38,7 @@ /SGGL/FineUIPro.Web/FileUpload/TestRun/TestRunMonthSummary/2024-06 /SGGL/FineUIPro.Web/FileUpload/ProjectAttachUrl/2024-06 /SGGLPackFile_20240730.rar +/SGGL/FineUIPro.Web/FileUpload/Transfer/PunchlistFrom/2024-10 +/SGGL/FineUIPro.Web/ErrLog.txt +/SGGL/FineUIPro.Web/Web.config +/CreateModel2017.bat diff --git a/CreateModel2017.bat b/CreateModel2017.bat deleted file mode 100644 index fca280ba..00000000 --- a/CreateModel2017.bat +++ /dev/null @@ -1,33 +0,0 @@ -@echo off -REM --------------- -REM 发布包生成工具 -REM 执行此文件前请先用Release生成WebOA项目 -REM -------------- - - - -REM -------------- -REM 环境变量设置 Project_Src为如WebOA这样的分支 -REM -------------- -set PROJECT_SRC=%CD% -cd.. - -REM 源代码Model项目文件夹 -set Model_ROOT=%PROJECT_SRC%\SGGL\Model - - -REM -------------- -REM 发布程序包文件夹相关 -REM -------------- - - - - -@echo 设置.net控制台环境 -@echo. -@call "%VS150%" - -SqlMetal /views /server:. /user:sa /password:1111 /database:SGGLDB_WH /code:%Model_ROOT%\Model.cs /namespace:Model - -@ECHO 完成 -pause diff --git a/DataBase/鐗堟湰鏃ュ織/SUBQHSE_V2024-10-26-phf.sql b/DataBase/鐗堟湰鏃ュ織/SUBQHSE_V2024-10-26-phf.sql new file mode 100644 index 00000000..8ab70c1c --- /dev/null +++ b/DataBase/鐗堟湰鏃ュ織/SUBQHSE_V2024-10-26-phf.sql @@ -0,0 +1,8 @@ +insert into Sys_Menu(MenuId,MenuName,Url,SortIndex,SuperMenu,MenuType,IsOffice,IsEnd,IsUsed) +values('1FBC729D-0A8E-423C-B133-B64583BF9611','进度软件(新)','',70,'0','Menu_JDGL',0,0,0) +go + +insert into Sys_Menu(MenuId,MenuName,Url,SortIndex,SuperMenu,MenuType,IsOffice,IsEnd,IsUsed) +values('368DB90C-8A47-44F7-A69A-D2D60A6E338C','费用项裁剪','JDGL/Progress/WbsManager.aspx',10,'1FBC729D-0A8E-423C-B133-B64583BF9611','Menu_JDGL',0,1,0) +go + diff --git a/DataBase/鐗堟湰鏃ュ織/SUBQHSE_V2024-10-31-xiaj.sql b/DataBase/鐗堟湰鏃ュ織/SUBQHSE_V2024-10-31-xiaj.sql new file mode 100644 index 00000000..309d41e4 --- /dev/null +++ b/DataBase/鐗堟湰鏃ュ織/SUBQHSE_V2024-10-31-xiaj.sql @@ -0,0 +1,48 @@ + + +--1、索引项目中,删除英文,保留中文 +update Sys_Menu set MenuName='尾项管理' where MenuId='016903B1-3B86-4CF5-AFF8-FF8BE389BEE5'; +update Sys_Menu set MenuName='非工艺系统清单' where MenuId='022428DC-FC99-4916-B8AF-6A9DC885DFAF'; +update Sys_Menu set MenuName='工艺系统清单' where MenuId='197F9A9A-480C-4CC3-B6B7-3A7D382DC3EB'; +update Sys_Menu set MenuName='尾项完成统计表' where MenuId='2352E44F-BE12-4012-B43F-AAF649EDAC32'; +update Sys_Menu set MenuName='移交状态汇总表' where MenuId='25C13642-AE77-42E2-B0FB-32663B68F93F'; +update Sys_Menu set MenuName='电气' where MenuId='296E75D2-192A-4D1F-8471-DD34263F8691'; +update Sys_Menu set MenuName='尾项进度跟踪表' where MenuId='549DD0B6-05CB-4C75-B8F5-9AADDEDF399F'; +update Sys_Menu set MenuName='电信' where MenuId='58FFBD80-ACB9-4830-A18A-E025D9600D94'; +update Sys_Menu set MenuName='移交统计图表' where MenuId='60838E30-4A46-4878-B299-C234900B10B7'; +update Sys_Menu set MenuName='动设备' where MenuId='7E2FB5F9-FB99-4455-B68F-460F1F9A2676'; +update Sys_Menu set MenuName='仪表' where MenuId='88F51059-55B4-4CD5-A38C-36404E5029F6'; +update Sys_Menu set MenuName='土建/建筑/结构' where MenuId='95C39F86-C060-452E-BA37-D891C466A39B'; +update Sys_Menu set MenuName='静设备' where MenuId='982F746C-084C-445C-9AE8-8C37BDFE7994'; +update Sys_Menu set MenuName='尾项分类表' where MenuId='CB76462E-9444-4946-B787-ECB33C21E6D0'; +update Sys_Menu set MenuName='管道' where MenuId='D94C1BA4-9DFD-4514-AE12-6F886C5D8C9B'; +update Sys_Menu set MenuName='移交统计表' where MenuId='E305689E-5D84-4C1A-BF67-85FA2D828115'; +go +--2、删除项目中的地管和消防2个项目(隐藏菜单) +update Sys_Menu set MenuName='消防',IsUsed=0 where MenuId='794E64E2-FDD2-4B7D-8408-F7FB06F9C92A'; +update Sys_Menu set MenuName='地管',IsUsed=0 where MenuId='95295BF7-FB51-480D-9902-6ADA4E8427FC'; +go +--3、更新管道表的表格 +--判断字段不存在则添加 +IF NOT EXISTS(select * from sys.columns where name='TotalFactor' and [object_id]=object_id(N'Transfer_Piping')) +BEGIN + --总达因数 + ALTER TABLE Transfer_Piping ADD TotalFactor nvarchar(50) NULL; + --完成达因数 + ALTER TABLE Transfer_Piping ADD CompleteFactor nvarchar(50) NULL; + --完成比例 + ALTER TABLE Transfer_Piping ADD CompleteProportion nvarchar(50) NULL; + --试压完成 + ALTER TABLE Transfer_Piping ADD PressureTestCompleted nvarchar(50) NULL; + --冲洗吹扫 + ALTER TABLE Transfer_Piping ADD RinseAndBlowClean nvarchar(50) NULL; + --复位 + ALTER TABLE Transfer_Piping ADD Reduction nvarchar(50) NULL; + --电伴热 + ALTER TABLE Transfer_Piping ADD ElectricHeatTracing nvarchar(50) NULL; + --保温/冷 + ALTER TABLE Transfer_Piping ADD Insulation nvarchar(50) NULL; +END +go + + diff --git a/SGGL/BLL/Common/AttachFileService.cs b/SGGL/BLL/Common/AttachFileService.cs index 9a50abef..d4a5d72d 100644 --- a/SGGL/BLL/Common/AttachFileService.cs +++ b/SGGL/BLL/Common/AttachFileService.cs @@ -501,6 +501,9 @@ namespace BLL list.Add(".txt"); list.Add(".xlsx"); list.Add(".xls"); + list.Add(".png"); + list.Add(".jpg"); + list.Add(".jpeg"); foreach (var item in list) { if (item == FiletExtension) diff --git a/SGGL/FineUIPro.Web/ErrLog.txt b/SGGL/FineUIPro.Web/ErrLog.txt index 6727caa9..aed81f67 100644 --- a/SGGL/FineUIPro.Web/ErrLog.txt +++ b/SGGL/FineUIPro.Web/ErrLog.txt @@ -1,27 +1,1306 @@ 閿欒淇℃伅寮濮=====> -閿欒绫诲瀷:HttpRequestValidationException -閿欒淇℃伅:浠庡鎴风(SimpleForm1$ctl00$ContentPanel2$Form2$ctl10$TabStrip1$ctl00$SimpleForm2$txtDocContent="
1312131313
")涓娴嬪埌鏈夋綔鍦ㄥ嵄闄╃殑 Request.Form 鍊笺 +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via 閿欒鍫嗘爤: - 鍦 System.Web.HttpRequest.ValidateString(String value, String collectionKey, RequestValidationSource requestCollection) - 鍦 System.Web.HttpRequest.ValidateHttpValueCollection(HttpValueCollection collection, RequestValidationSource requestCollection) - 鍦 System.Web.HttpRequest.get_Form() - 鍦 System.Web.HttpRequest.get_HasForm() - 鍦 System.Web.UI.Page.GetCollectionBasedOnMethod(Boolean dontReturnNull) - 鍦 System.Web.UI.Page.DeterminePostBackMode() + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 13827 + 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2207 +鍑洪敊鏃堕棿:10/26/2024 12:11:08 +鍑洪敊鏃堕棿:10/26/2024 12:11:08 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 13851 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2072 +鍑洪敊鏃堕棿:10/26/2024 12:11:08 +鍑洪敊鏃堕棿:10/26/2024 12:11:08 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 13843 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1968 +鍑洪敊鏃堕棿:10/26/2024 12:11:08 +鍑洪敊鏃堕棿:10/26/2024 12:11:08 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 13643 + 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1910 +鍑洪敊鏃堕棿:10/26/2024 12:11:08 +鍑洪敊鏃堕棿:10/26/2024 12:11:08 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 13827 + 鍦 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2207 +鍑洪敊鏃堕棿:10/26/2024 14:11:08 +鍑洪敊鏃堕棿:10/26/2024 14:11:08 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 13851 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 2072 +鍑洪敊鏃堕棿:10/26/2024 14:11:08 +鍑洪敊鏃堕棿:10/26/2024 14:11:08 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 13843 + 鍦 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1968 +鍑洪敊鏃堕棿:10/26/2024 14:11:08 +鍑洪敊鏃堕棿:10/26/2024 14:11:08 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:ArgumentException +閿欒淇℃伅:鎻愪緵鐨 URI 鏂规鈥渉ttp鈥濇棤鏁堬紝搴斾负鈥渉ttps鈥濄 +鍙傛暟鍚: via +閿欒鍫嗘爤: + 鍦 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via) + 鍦 System.ServiceModel.ChannelFactory`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannel() + 鍦 System.ServiceModel.ClientBase`1.CreateChannelInternal() + 鍦 System.ServiceModel.ClientBase`1.get_Channel() + 鍦 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:琛屽彿 13643 + 鍦 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 浣嶇疆 G:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:琛屽彿 1910 +鍑洪敊鏃堕棿:10/26/2024 14:11:08 +鍑洪敊鏃堕棿:10/26/2024 14:11:08 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) - 鍦 System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) - 鍦 System.Web.UI.Page.ProcessRequest() - 鍦 System.Web.UI.Page.ProcessRequestWithNoAssert(HttpContext context) - 鍦 System.Web.UI.Page.ProcessRequest(HttpContext context) - 鍦 ASP.cqms_solution_constructsolutionview_aspx.ProcessRequest(HttpContext context) 浣嶇疆 c:\Users\21968\AppData\Local\Temp\Temporary ASP.NET Files\vs\dd71ec03\fe0e124\App_Web_4xnb3rb4.1.cs:琛屽彿 0 - 鍦 System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() - 鍦 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) - 鍦 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) -鍑洪敊鏃堕棿:10/28/2024 16:32:01 -鍑洪敊鏂囦欢:http://localhost:8579/CQMS/Solution/ConstructSolutionView.aspx?constructSolutionId=81daf00b-523c-4545-9478-7dd887a4e724 +鍑洪敊鏃堕棿:10/26/2024 14:28:31 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx IP鍦板潃:::1 鎿嶄綔浜哄憳:JT -鍑洪敊鏃堕棿:10/28/2024 16:32:01 +鍑洪敊鏃堕棿:10/26/2024 14:28:31 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:28:31 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:28:31 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:28:33 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:28:33 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:28:34 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:28:34 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:28:35 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:28:35 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:28:35 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:28:35 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:28:35 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:28:35 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:28:36 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:28:36 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:28:36 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:28:36 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:28:37 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:28:37 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:28:42 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:28:42 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:28:43 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:28:43 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:28:43 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:28:43 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:28:43 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:28:43 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:28:44 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:28:44 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:28:44 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:28:44 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:28:44 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:28:44 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:28:44 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:28:44 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:28:45 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:28:45 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:28:46 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:28:46 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:28:46 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:28:46 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:43:54 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:43:54 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:44:03 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:44:03 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:44:03 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:44:03 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:44:04 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:44:04 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:44:27 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:44:27 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:44:27 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:44:27 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:44:30 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:44:30 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:44:31 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:44:31 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:44:33 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:44:33 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:44:34 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:44:34 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:44:34 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:44:34 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:44:35 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:44:35 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:44:35 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:44:35 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:44:35 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:44:35 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:44:36 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:44:36 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:44:36 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:44:36 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:44:36 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:44:36 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:44:37 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:44:37 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:44:37 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:44:37 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:44:40 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:44:40 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:44:40 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:44:40 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:44:44 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:44:44 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:46:38 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:46:38 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:48:40 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:48:40 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:48:45 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:48:45 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:NullReferenceException +閿欒淇℃伅:鏈皢瀵硅薄寮曠敤璁剧疆鍒板璞$殑瀹炰緥銆 +閿欒鍫嗘爤: + 鍦 (Object ) + 鍦 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr() + 鍦 (GridRow ) + 鍦 FineUIPro.GridRow.InitTemplateContainers() + 鍦 (GridRow ) + 鍦 FineUIPro.Grid.LoadControlState(Object savedState) + 鍦 System.Web.UI.Control.LoadControlStateInternal(Object savedStateObj) + 鍦 System.Web.UI.Page.LoadAllState() + 鍦 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +鍑洪敊鏃堕棿:10/26/2024 14:48:47 +鍑洪敊鏂囦欢:http://localhost:8579/ProjectData/Installation.aspx +IP鍦板潃:::1 +鎿嶄綔浜哄憳:JT + +鍑洪敊鏃堕棿:10/26/2024 14:48:47 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpCompileException +閿欒淇℃伅:g:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\JDGL\Progress\WbsManager.aspx(73): error CS1061: 鈥淎SP.jdgl_progress_wbsmanager_aspx鈥濅笉鍖呭惈鈥渂tnAdd_Click鈥濈殑瀹氫箟锛屽苟涓旀壘涓嶅埌鍙帴鍙楃被鍨嬩负鈥淎SP.jdgl_progress_wbsmanager_aspx鈥濈殑绗竴涓弬鏁扮殑鎵╁睍鏂规硶鈥渂tnAdd_Click鈥(鏄惁缂哄皯 using 鎸囦护鎴栫▼搴忛泦寮曠敤?) +閿欒鍫嗘爤: + 鍦 System.Web.Compilation.BuildManager.CompileWebFile(VirtualPath virtualPath) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound) + 鍦 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp) + 鍦 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) + 鍦 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path) + 鍦 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 鍦 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 鍦 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +鍑洪敊鏃堕棿:10/26/2024 15:47:15 +鍑洪敊鏂囦欢:http://localhost:8579/JDGL/Progress/WbsManager.aspx +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:10/26/2024 15:47:15 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpCompileException +閿欒淇℃伅:g:\鍏徃椤圭洰\浜旂幆\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\JDGL\Progress\WbsManager.aspx(143): error CS1061: 鈥淎SP.jdgl_progress_wbsmanager_aspx鈥濅笉鍖呭惈鈥淲indow1_Close鈥濈殑瀹氫箟锛屽苟涓旀壘涓嶅埌鍙帴鍙楃被鍨嬩负鈥淎SP.jdgl_progress_wbsmanager_aspx鈥濈殑绗竴涓弬鏁扮殑鎵╁睍鏂规硶鈥淲indow1_Close鈥(鏄惁缂哄皯 using 鎸囦护鎴栫▼搴忛泦寮曠敤?) +閿欒鍫嗘爤: + 鍦 System.Web.Compilation.BuildManager.CompileWebFile(VirtualPath virtualPath) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) + 鍦 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound) + 鍦 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp) + 鍦 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) + 鍦 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path) + 鍦 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 鍦 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 鍦 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +鍑洪敊鏃堕棿:10/26/2024 15:49:59 +鍑洪敊鏂囦欢:http://localhost:8579/JDGL/Progress/WbsManager.aspx +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:10/26/2024 15:49:59 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpParseException +閿欒淇℃伅:鏈兘鍔犺浇鏂囦欢鎴栫▼搴忛泦鈥淣ewtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed鈥濇垨瀹冪殑鏌愪竴涓緷璧栭」銆傛壘鍒扮殑绋嬪簭闆嗘竻鍗曞畾涔変笌绋嬪簭闆嗗紩鐢ㄤ笉鍖归厤銆 (寮傚父鏉ヨ嚜 HRESULT:0x80131040) +閿欒鍫嗘爤: + 鍦 System.Web.UI.TemplateParser.ProcessException(Exception ex) + 鍦 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding) + 鍦 System.Web.UI.TemplateParser.ParseString(String text, VirtualPath virtualPath, Encoding fileEncoding) +----閿欒绫诲瀷:FileLoadException +----閿欒淇℃伅: +----鏈兘鍔犺浇鏂囦欢鎴栫▼搴忛泦鈥淣ewtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed鈥濇垨瀹冪殑鏌愪竴涓緷璧栭」銆傛壘鍒扮殑绋嬪簭闆嗘竻鍗曞畾涔変笌绋嬪簭闆嗗紩鐢ㄤ笉鍖归厤銆 (寮傚父鏉ヨ嚜 HRESULT:0x80131040) +----閿欒鍫嗘爤: + 鍦 System.Signature.GetSignature(Void* pCorSig, Int32 cCorSig, RuntimeFieldHandleInternal fieldHandle, IRuntimeMethodInfo methodHandle, RuntimeType declaringType) + 鍦 System.Reflection.RuntimeMethodInfo.FetchNonReturnParameters() + 鍦 System.Reflection.RuntimeMethodInfo.GetParametersNoCopy() + 鍦 System.Reflection.RuntimePropertyInfo.GetIndexParametersNoCopy() + 鍦 System.Reflection.RuntimePropertyInfo.GetIndexParameters() + 鍦 System.ComponentModel.ReflectTypeDescriptionProvider.ReflectGetProperties(Type type) + 鍦 System.ComponentModel.ReflectTypeDescriptionProvider.ReflectedTypeData.GetProperties() + 鍦 System.ComponentModel.TypeDescriptor.TypeDescriptionNode.DefaultTypeDescriptor.System.ComponentModel.ICustomTypeDescriptor.GetProperties() + 鍦 System.ComponentModel.TypeDescriptor.GetProperties(Type componentType) + 鍦 System.Web.UI.TargetFrameworkUtil.GetPropertyDescriptorCollection(Type type) + 鍦 System.Web.UI.TargetFrameworkUtil.GetProperties(Type type) + 鍦 System.Web.UI.ControlBuilder.get_PropertyDescriptors() + 鍦 System.Web.UI.ControlBuilder.ValidatePersistable(PropertyInfo propInfo, Boolean usingSetAttribute, Boolean mainDirectiveMode, Boolean simplePropertyEntry, String filter) + 鍦 System.Web.UI.ControlBuilder.AddProperty(String filter, String name, String value, Boolean mainDirectiveMode) + 鍦 System.Web.UI.ControlBuilder.PreprocessAttribute(String filter, String attribname, String attribvalue, Boolean mainDirectiveMode, Int32 line, Int32 column) + 鍦 System.Web.UI.ControlBuilder.PreprocessAttributes(ParsedAttributeCollection attribs) + 鍦 System.Web.UI.ControlBuilder.Init(TemplateParser parser, ControlBuilder parentBuilder, Type type, String tagName, String id, IDictionary attribs) + 鍦 System.Web.UI.ControlBuilder.CreateBuilderFromType(TemplateParser parser, ControlBuilder parentBuilder, Type type, String tagName, String id, IDictionary attribs, Int32 line, String sourceFileName) + 鍦 System.Web.UI.ControlBuilder.CreateChildBuilder(String filter, String tagName, IDictionary attribs, TemplateParser parser, ControlBuilder parentBuilder, String id, Int32 line, VirtualPath virtualPath, Type& childType, Boolean defaultProperty) + 鍦 System.Web.UI.TemplateParser.ProcessBeginTag(Match match, String inputText) + 鍦 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding) +--------閿欒绫诲瀷:FileLoadException +--------閿欒淇℃伅: +--------鏈兘鍔犺浇鏂囦欢鎴栫▼搴忛泦鈥淣ewtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed鈥濇垨瀹冪殑鏌愪竴涓緷璧栭」銆傛壘鍒扮殑绋嬪簭闆嗘竻鍗曞畾涔変笌绋嬪簭闆嗗紩鐢ㄤ笉鍖归厤銆 (寮傚父鏉ヨ嚜 HRESULT:0x80131040) +--------閿欒鍫嗘爤: + 鍑洪敊鏃堕棿:11/01/2024 10:24:33 +鍑洪敊鏂囦欢:http://localhost:8579/indexProject.aspx?projectId=9e7f3262-1cd2-45b6-852f-0276fef4529e +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:11/01/2024 10:24:33 + + +閿欒淇℃伅寮濮=====> +閿欒绫诲瀷:HttpParseException +閿欒淇℃伅:绫诲瀷鈥淔ineUIPro.RenderField鈥濅笉鍏锋湁鍚嶄负鈥渕Width鈥濈殑鍏叡灞炴с +閿欒鍫嗘爤: + 鍦 System.Web.UI.TemplateParser.ProcessException(Exception ex) + 鍦 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding) + 鍦 System.Web.UI.TemplateParser.ParseString(String text, VirtualPath virtualPath, Encoding fileEncoding) +----閿欒绫诲瀷:HttpException +----閿欒淇℃伅: +----绫诲瀷鈥淔ineUIPro.RenderField鈥濅笉鍏锋湁鍚嶄负鈥渕Width鈥濈殑鍏叡灞炴с +----閿欒鍫嗘爤: + 鍦 System.Web.UI.ControlBuilder.AddProperty(String filter, String name, String value, Boolean mainDirectiveMode) + 鍦 System.Web.UI.ControlBuilder.PreprocessAttribute(String filter, String attribname, String attribvalue, Boolean mainDirectiveMode, Int32 line, Int32 column) + 鍦 System.Web.UI.ControlBuilder.PreprocessAttributes(ParsedAttributeCollection attribs) + 鍦 System.Web.UI.ControlBuilder.Init(TemplateParser parser, ControlBuilder parentBuilder, Type type, String tagName, String id, IDictionary attribs) + 鍦 System.Web.UI.ControlBuilder.CreateBuilderFromType(TemplateParser parser, ControlBuilder parentBuilder, Type type, String tagName, String id, IDictionary attribs, Int32 line, String sourceFileName) + 鍦 System.Web.UI.ControlBuilder.CreateChildBuilder(String filter, String tagName, IDictionary attribs, TemplateParser parser, ControlBuilder parentBuilder, String id, Int32 line, VirtualPath virtualPath, Type& childType, Boolean defaultProperty) + 鍦 System.Web.UI.TemplateParser.ProcessBeginTag(Match match, String inputText) + 鍦 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding) +鍑洪敊鏃堕棿:11/01/2024 11:29:03 +鍑洪敊鏂囦欢:http://localhost:8579/Transfer/Electrical.aspx +IP鍦板潃:::1 + +鍑洪敊鏃堕棿:11/01/2024 11:29:03 diff --git a/SGGL/FineUIPro.Web/File/Excel/DataIn/Instrumentation瀵煎叆妯℃澘.xls b/SGGL/FineUIPro.Web/File/Excel/DataIn/Instrumentation瀵煎叆妯℃澘.xls index ffd0af3e..b02bca19 100644 Binary files a/SGGL/FineUIPro.Web/File/Excel/DataIn/Instrumentation瀵煎叆妯℃澘.xls and b/SGGL/FineUIPro.Web/File/Excel/DataIn/Instrumentation瀵煎叆妯℃澘.xls differ diff --git a/SGGL/FineUIPro.Web/File/Excel/DataIn/Piping瀵煎叆妯℃澘.xls b/SGGL/FineUIPro.Web/File/Excel/DataIn/Piping瀵煎叆妯℃澘.xls index 5d30839f..48132ef0 100644 Binary files a/SGGL/FineUIPro.Web/File/Excel/DataIn/Piping瀵煎叆妯℃澘.xls and b/SGGL/FineUIPro.Web/File/Excel/DataIn/Piping瀵煎叆妯℃澘.xls differ diff --git a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj index 23dad3ce..734d0de1 100644 --- a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj +++ b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj @@ -1453,6 +1453,7 @@