diff --git a/DataBase/版本日志/SGGLDB_V2025-09-08-002-bwj.sql b/DataBase/版本日志/SGGLDB_V2025-09-08-002-bwj.sql
new file mode 100644
index 0000000..2b29d34
--- /dev/null
+++ b/DataBase/版本日志/SGGLDB_V2025-09-08-002-bwj.sql
@@ -0,0 +1,93 @@
+
+
+ALTER PROC [dbo].[sp_rpt_WeldingStatistical]
+ @AreaNo nVARCHAR(50) = NULL,
+ @installationId nVARCHAR(50) = NULL,
+ @startTime datetime = NULL,
+ @endTime datetime = NULL,
+ @projectId NVARCHAR(50) = NULL,
+ @IsStandard NVARCHAR(50) = NULL,
+ @teamGroup nvarchar(50) = NULL
+
+AS
+/*ͳƷ*/
+ SELECT WorkArea.WorkAreaId,
+ WorkArea.ProjectId,
+ WorkArea.WorkAreaCode AS baw_areano,--
+ Unit.UnitCode AS bsu_unitcode,--λ
+ Unit.UnitName AS bsu_unitname, --λ
+ Installation.InstallationCode, --װô
+ Installation.InstallationName, --װ
+ ISNULL(total_jot.total_jot,0) AS total_jot, --ܺ
+ CAST(ISNULL(total_jot.total_din,0) AS DECIMAL(19,2)) AS total_din,--ܴ
+ TeamGroup.TeamGroupId,
+ TeamGroup.TeamGroupName as TeamGroup,
+ CAST(ISNULL(finished_total_dia_bq.finished_total_dia_bq ,0) AS DECIMAL(19,2)) AS finished_total_din_bq, --ɴ
+ (CAST(ISNULL(total_jot.total_din,0)-ISNULL(finished_total_jot_bq.finished_total_din_bq ,0) AS DECIMAL(19,2))) as RemainingDain, --ʣܴ-ɴ
+ getdate() as CurrentDate,--
+ WorkArea.CompletionDate, --
+ (DATEDIFF(DAY, getdate(), WorkArea.CompletionDate)+1) as RemainingConPeriod,--ʣ
+ CEILING(case when (DATEDIFF(DAY, getdate(), WorkArea.CompletionDate)+1)>0 then
+ (ISNULL(total_jot.total_din,0)-ISNULL(finished_total_jot_bq.finished_total_din_bq ,0))/(DATEDIFF(DAY, getdate(), WorkArea.CompletionDate)+1)
+ else '0' end) as AvgDayCompletedDin,--վӦɴ
+ (getdate()-1) as CurrentCompleted, --
+ (cast(isnull(finished_current_day_din.finished_current_day_din,0) as decimal(19,2))) as finished_current_day_din --ɴ
+FROM ProjectData_WorkArea AS WorkArea
+LEFT JOIN Base_Unit AS Unit ON WorkArea.UnitId =Unit.UnitId
+LEFT JOIN Project_Installation AS Installation ON Installation.InstallationId = WorkArea.InstallationId
+LEFT JOIN (SELECT COUNT(*) total_jot ,pw_isoinfo.WorkAreaId ,SUM(JOT_Size) AS total_din
+ ,SUM(JOT_DoneDin) AS finished_total_din
+ FROM pw_jointinfo
+ LEFT JOIN pw_isoinfo ON pw_jointinfo.ISO_ID = pw_isoinfo.ISO_ID
+ WHERE (pw_isoinfo.Is_Standard=@IsStandard OR @IsStandard IS NULL)
+ GROUP BY pw_isoinfo.WorkAreaId) AS total_jot ON total_jot.WorkAreaId = WorkArea.WorkAreaId
+
+LEFT JOIN (SELECT pw_isoinfo.WorkAreaId ,SUM(JOT_DoneDin) AS finished_total_din_bq
+ FROM pw_jointinfo
+ LEFT JOIN pw_isoinfo ON pw_jointinfo.ISO_ID = pw_isoinfo.ISO_ID
+ LEFT JOIN BO_WeldReportMain ON BO_WeldReportMain.dreportid = pw_jointinfo.dreportid
+ WHERE pw_jointinfo.DReportID is not null
+ and (jot_welddate >= @startTime OR @startTime IS NULL) and (jot_welddate <=@endTime OR @endTime IS NULL) AND
+ (pw_isoinfo.Is_Standard=@IsStandard OR @IsStandard IS NULL)
+ GROUP BY pw_isoinfo.WorkAreaId) AS finished_total_jot_bq ON finished_total_jot_bq.WorkAreaId = WorkArea.WorkAreaId
+
+
+--ʩ
+left join(select distinct ProjectData_TeamGroup.TeamGroupId,ProjectData_TeamGroup.TeamGroupName,PW_IsoInfo.WorkAreaId from PW_JointInfo
+ left join PW_IsoInfo on PW_IsoInfo.ISO_ID = PW_JointInfo.ISO_ID
+ left join BS_Welder on BS_Welder.WED_ID = PW_JointInfo.JOT_CellWelder
+ left join ProjectData_TeamGroup on ProjectData_TeamGroup.TeamGroupId= BS_Welder.TeamGroupId
+ where PW_JointInfo.DReportID is not null and BS_Welder.TeamGroupId is not null) as TeamGroup on TeamGroup.WorkAreaId = WorkArea.WorkAreaId
+
+----ɴ
+LEFT JOIN (SELECT pw_isoinfo.WorkAreaId,BS_Welder.TeamGroupId,SUM(JOT_DoneDin) AS finished_total_dia_bq
+ FROM pw_jointinfo
+ LEFT JOIN pw_isoinfo ON pw_jointinfo.ISO_ID = pw_isoinfo.ISO_ID
+ LEFT JOIN BO_WeldReportMain ON BO_WeldReportMain.dreportid = pw_jointinfo.dreportid
+ left join BS_Welder on BS_Welder.WED_ID = PW_JointInfo.JOT_CellWelder
+ WHERE pw_jointinfo.DReportID is not null
+ and (jot_welddate >= @startTime OR @startTime IS NULL) and (jot_welddate <=@endTime OR @endTime IS NULL) AND
+ (pw_isoinfo.Is_Standard=@IsStandard OR @IsStandard IS NULL)
+ GROUP BY pw_isoinfo.WorkAreaId,BS_Welder.TeamGroupId) AS finished_total_dia_bq ON finished_total_dia_bq.WorkAreaId = WorkArea.WorkAreaId and finished_total_dia_bq.TeamGroupId = TeamGroup.TeamGroupId
+
+--ɴ
+LEFT JOIN (SELECT pw_isoinfo.WorkAreaId,BS_Welder.TeamGroupId ,SUM(JOT_DoneDin) AS finished_current_day_din
+ FROM pw_jointinfo
+ LEFT JOIN pw_isoinfo ON pw_jointinfo.ISO_ID = pw_isoinfo.ISO_ID
+ LEFT JOIN BO_WeldReportMain ON BO_WeldReportMain.dreportid = pw_jointinfo.dreportid
+ left join BS_Welder on BS_Welder.WED_ID = PW_JointInfo.JOT_CellWelder
+ WHERE pw_jointinfo.DReportID is not null
+ and (CONVERT(varchar(10), jot_welddate, 23) = CONVERT(varchar(10), GETDATE()-1, 23) ) AND
+ (pw_isoinfo.Is_Standard=@IsStandard OR @IsStandard IS NULL)
+ GROUP BY pw_isoinfo.WorkAreaId,BS_Welder.TeamGroupId) AS finished_current_day_din ON finished_current_day_din.WorkAreaId = WorkArea.WorkAreaId and finished_current_day_din.TeamGroupId = TeamGroup.TeamGroupId
+
+WHERE
+ (WorkArea.ProjectId=@projectId OR @projectId IS NULL ) AND
+ (WorkArea.WorkAreaId=@areano OR @AreaNo IS NULL ) AND
+ (WorkArea.InstallationId=@installationId OR @installationId IS NULL) AND
+ (TeamGroup.TeamGroupId=@teamGroup OR @teamGroup IS NULL)
+ORDER BY Unit.UnitCode ,Installation.InstallationCode
+
+GO
+
+
diff --git a/SGGL/FineUIPro.Web/ErrLog.txt b/SGGL/FineUIPro.Web/ErrLog.txt
index 1957b5d..5f28270 100644
--- a/SGGL/FineUIPro.Web/ErrLog.txt
+++ b/SGGL/FineUIPro.Web/ErrLog.txt
@@ -1,7547 +1 @@
-
-错误信息开始=====>
-错误类型:HttpException
-错误信息:文件“/MyPage.aspx”不存在。
-错误堆栈:
- 在 System.Web.UI.Util.CheckVirtualFileExists(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)
-出错时间:03/27/2025 10:32:11
-出错文件:http://localhost:4528/MyPage.aspx/MyServerSideMethod
-IP地址:::1
-
-出错时间:03/27/2025 10:32:12
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:未知 Web 方法 str。
-参数名: methodName
-错误堆栈:
- 在 System.Web.Script.Services.WebServiceData.GetMethodData(String methodName)
- 在 System.Web.Handlers.ScriptModule.OnPostAcquireRequestState(Object sender, EventArgs eventArgs)
- 在 System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-出错时间:03/27/2025 10:33:12
-出错文件:http://localhost:4528/indexProject.aspx/str
-IP地址:::1
-操作人员:JT
-
-出错时间:03/27/2025 10:33:12
-
-
-错误信息开始=====>
-错误类型:HttpException
-错误信息:不允许使用类似“<%$ Resources:Lan,userId %>”的文本表达式。请改用 。
-错误堆栈:
- 在 System.Web.UI.TemplateParser.ProcessError(String message)
- 在 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding)
- 在 System.Web.UI.TemplateParser.ParseString(String text, VirtualPath virtualPath, Encoding fileEncoding)
-出错时间:03/27/2025 10:38:45
-出错文件:http://localhost:4528/indexProject.aspx?projectId=b74e7c07-93e6-4fc6-9526-01bb80bd3d62
-IP地址:::1
-
-出错时间:03/27/2025 10:38:45
-
-
-错误信息开始=====>
-错误类型:HttpParseException
-错误信息:表达式“<%$ CurrUser.UserId %>”无效。表达式使用语法 <%$ prefix:value %>。
-错误堆栈:
- 在 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)
-出错时间:03/27/2025 10:45:35
-出错文件:http://localhost:4528/indexProject.aspx
-IP地址:::1
-
-出错时间:03/27/2025 10:45:36
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:未知 Web 方法 str。
-参数名: methodName
-错误堆栈:
- 在 System.Web.Script.Services.WebServiceData.GetMethodData(String methodName)
- 在 System.Web.Handlers.ScriptModule.OnPostAcquireRequestState(Object sender, EventArgs eventArgs)
- 在 System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-出错时间:03/27/2025 11:25:47
-出错文件:http://localhost:4528/indexProject.aspx/str
-IP地址:::1
-操作人员:JT
-
-出错时间:03/27/2025 11:25:47
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:未知 Web 方法 str。
-参数名: methodName
-错误堆栈:
- 在 System.Web.Script.Services.WebServiceData.GetMethodData(String methodName)
- 在 System.Web.Handlers.ScriptModule.OnPostAcquireRequestState(Object sender, EventArgs eventArgs)
- 在 System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-出错时间:03/27/2025 11:26:29
-出错文件:http://localhost:4528/indexProject.aspx/str
-IP地址:::1
-操作人员:JT
-
-出错时间:03/27/2025 11:26:29
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:未知 Web 方法 str。
-参数名: methodName
-错误堆栈:
- 在 System.Web.Script.Services.WebServiceData.GetMethodData(String methodName)
- 在 System.Web.Handlers.ScriptModule.OnPostAcquireRequestState(Object sender, EventArgs eventArgs)
- 在 System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-出错时间:03/27/2025 11:29:15
-出错文件:http://localhost:4528/indexProject.aspx/str
-IP地址:::1
-操作人员:JT
-
-出错时间:03/27/2025 11:29:15
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:未知 Web 方法 str。
-参数名: methodName
-错误堆栈:
- 在 System.Web.Script.Services.WebServiceData.GetMethodData(String methodName)
- 在 System.Web.Handlers.ScriptModule.OnPostAcquireRequestState(Object sender, EventArgs eventArgs)
- 在 System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-出错时间:03/27/2025 11:30:38
-出错文件:http://localhost:4528/indexProject.aspx/str
-IP地址:::1
-操作人员:JT
-
-出错时间:03/27/2025 11:30:38
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:未知 Web 方法 str。
-参数名: methodName
-错误堆栈:
- 在 System.Web.Script.Services.WebServiceData.GetMethodData(String methodName)
- 在 System.Web.Handlers.ScriptModule.OnPostAcquireRequestState(Object sender, EventArgs eventArgs)
- 在 System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-出错时间:03/27/2025 11:32:38
-出错文件:http://localhost:4528/indexProject.aspx/str
-IP地址:::1
-操作人员:JT
-
-出错时间:03/27/2025 11:32:39
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:未知 Web 方法 str。
-参数名: methodName
-错误堆栈:
- 在 System.Web.Script.Services.WebServiceData.GetMethodData(String methodName)
- 在 System.Web.Handlers.ScriptModule.OnPostAcquireRequestState(Object sender, EventArgs eventArgs)
- 在 System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-出错时间:03/27/2025 11:33:00
-出错文件:http://localhost:4528/indexProject.aspx/str
-IP地址:::1
-操作人员:JT
-
-出错时间:03/27/2025 11:33:00
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:未知 Web 方法 str。
-参数名: methodName
-错误堆栈:
- 在 System.Web.Script.Services.WebServiceData.GetMethodData(String methodName)
- 在 System.Web.Handlers.ScriptModule.OnPostAcquireRequestState(Object sender, EventArgs eventArgs)
- 在 System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-出错时间:03/27/2025 11:35:01
-出错文件:http://localhost:4528/indexProject.aspx/str
-IP地址:::1
-操作人员:JT
-
-出错时间:03/27/2025 11:35:01
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:未知 Web 方法 str。
-参数名: methodName
-错误堆栈:
- 在 System.Web.Script.Services.WebServiceData.GetMethodData(String methodName)
- 在 System.Web.Handlers.ScriptModule.OnPostAcquireRequestState(Object sender, EventArgs eventArgs)
- 在 System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-出错时间:03/27/2025 11:36:08
-出错文件:http://localhost:4528/indexProject.aspx/str
-IP地址:::1
-操作人员:JT
-
-出错时间:03/27/2025 11:36:08
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:未知 Web 方法 str。
-参数名: methodName
-错误堆栈:
- 在 System.Web.Script.Services.WebServiceData.GetMethodData(String methodName)
- 在 System.Web.Handlers.ScriptModule.OnPostAcquireRequestState(Object sender, EventArgs eventArgs)
- 在 System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-出错时间:03/27/2025 11:37:40
-出错文件:http://localhost:4528/indexProject.aspx/str
-IP地址:::1
-操作人员:JT
-
-出错时间:03/27/2025 11:37:40
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:未知 Web 方法 str。
-参数名: methodName
-错误堆栈:
- 在 System.Web.Script.Services.WebServiceData.GetMethodData(String methodName)
- 在 System.Web.Handlers.ScriptModule.OnPostAcquireRequestState(Object sender, EventArgs eventArgs)
- 在 System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-出错时间:03/27/2025 11:37:48
-出错文件:http://localhost:4528/indexProject.aspx/str
-IP地址:::1
-操作人员:JT
-
-出错时间:03/27/2025 11:37:48
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:未知 Web 方法 str。
-参数名: methodName
-错误堆栈:
- 在 System.Web.Script.Services.WebServiceData.GetMethodData(String methodName)
- 在 System.Web.Handlers.ScriptModule.OnPostAcquireRequestState(Object sender, EventArgs eventArgs)
- 在 System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-出错时间:03/27/2025 11:44:44
-出错文件:http://localhost:4528/indexProject.aspx/str
-IP地址:::1
-操作人员:JT
-
-出错时间:03/27/2025 11:44:44
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:未知 Web 方法 str。
-参数名: methodName
-错误堆栈:
- 在 System.Web.Script.Services.WebServiceData.GetMethodData(String methodName)
- 在 System.Web.Handlers.ScriptModule.OnPostAcquireRequestState(Object sender, EventArgs eventArgs)
- 在 System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-出错时间:03/27/2025 11:52:12
-出错文件:http://localhost:4528/indexProject.aspx/str
-IP地址:::1
-操作人员:JT
-
-出错时间:03/27/2025 11:52:12
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:未知 Web 方法 str。
-参数名: methodName
-错误堆栈:
- 在 System.Web.Script.Services.WebServiceData.GetMethodData(String methodName)
- 在 System.Web.Handlers.ScriptModule.OnPostAcquireRequestState(Object sender, EventArgs eventArgs)
- 在 System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-出错时间:03/27/2025 11:52:41
-出错文件:http://localhost:4528/indexProject.aspx/str
-IP地址:::1
-操作人员:JT
-
-出错时间:03/27/2025 11:52:42
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:未知 Web 方法 str。
-参数名: methodName
-错误堆栈:
- 在 System.Web.Script.Services.WebServiceData.GetMethodData(String methodName)
- 在 System.Web.Handlers.ScriptModule.OnPostAcquireRequestState(Object sender, EventArgs eventArgs)
- 在 System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-出错时间:03/27/2025 11:53:02
-出错文件:http://localhost:4528/indexProject.aspx/str
-IP地址:::1
-操作人员:JT
-
-出错时间:03/27/2025 11:53:02
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:未知 Web 方法 str。
-参数名: methodName
-错误堆栈:
- 在 System.Web.Script.Services.WebServiceData.GetMethodData(String methodName)
- 在 System.Web.Handlers.ScriptModule.OnPostAcquireRequestState(Object sender, EventArgs eventArgs)
- 在 System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-出错时间:03/27/2025 11:55:06
-出错文件:http://localhost:4528/indexProject.aspx/str
-IP地址:::1
-操作人员:JT
-
-出错时间:03/27/2025 11:55:06
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:未知 Web 方法 str。
-参数名: methodName
-错误堆栈:
- 在 System.Web.Script.Services.WebServiceData.GetMethodData(String methodName)
- 在 System.Web.Handlers.ScriptModule.OnPostAcquireRequestState(Object sender, EventArgs eventArgs)
- 在 System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-出错时间:03/27/2025 11:55:18
-出错文件:http://localhost:4528/indexProject.aspx/str
-IP地址:::1
-操作人员:JT
-
-出错时间:03/27/2025 11:55:19
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.common.mainProject.get_VideoUserName() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 735
- 在 ASP.common_mainproject_aspx.__Render__control1(HtmlTextWriter __w, Control parameterContainer) 位置 e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx:行号 796
- 在 System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children)
- 在 System.Web.UI.Control.RenderChildren(HtmlTextWriter writer)
- 在 System.Web.UI.Page.Render(HtmlTextWriter writer)
- 在 System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter)
- 在 System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter)
- 在 System.Web.UI.Control.RenderControl(HtmlTextWriter writer)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/27/2025 17:20:30
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/27/2025 17:20:30
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:列名 'UserId' 无效。
-错误堆栈:
- 在 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
- 在 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
- 在 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
- 在 System.Data.SqlClient.SqlDataReader.get_MetaData()
- 在 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
- 在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable)
- 在 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\BLL\SQLHelper.cs:行号 311
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.BindGrid()
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.Page_Load(Object sender, EventArgs e)
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.EventHandler.Invoke(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/29/2025 10:48:22
-出错文件:http://localhost:4528/HSSE/Meeting/ClassMeeting.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/29/2025 10:48:22
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:列名 'UserId' 无效。
-错误堆栈:
- 在 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
- 在 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
- 在 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
- 在 System.Data.SqlClient.SqlDataReader.get_MetaData()
- 在 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
- 在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable)
- 在 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\BLL\SQLHelper.cs:行号 311
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.BindGrid()
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.Page_Load(Object sender, EventArgs e)
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.EventHandler.Invoke(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/29/2025 10:48:43
-出错文件:http://localhost:4528/HSSE/Meeting/ClassMeeting.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/29/2025 10:48:43
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:列名 'UserId' 无效。
-错误堆栈:
- 在 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
- 在 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
- 在 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
- 在 System.Data.SqlClient.SqlDataReader.get_MetaData()
- 在 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
- 在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable)
- 在 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\BLL\SQLHelper.cs:行号 311
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.BindGrid()
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.Page_Load(Object sender, EventArgs e)
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.EventHandler.Invoke(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/29/2025 10:49:36
-出错文件:http://localhost:4528/HSSE/Meeting/ClassMeeting.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/29/2025 10:49:36
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.indexProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\indexProject.aspx.cs:行号 369
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/30/2025 08:19:51
-出错文件:http://localhost:4528/indexProject.aspx?projectId=60556884-400e-4809-ba30-49d3a588d00c
-IP地址:::1
-
-出错时间:03/30/2025 08:19:51
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.indexProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\indexProject.aspx.cs:行号 369
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/30/2025 08:20:45
-出错文件:http://localhost:4528/indexProject.aspx?projectId=60556884-400e-4809-ba30-49d3a588d00c
-IP地址:::1
-
-出错时间:03/30/2025 08:20:45
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.indexProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\indexProject.aspx.cs:行号 369
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/30/2025 08:20:47
-出错文件:http://localhost:4528/indexProject.aspx?projectId=60556884-400e-4809-ba30-49d3a588d00c
-IP地址:::1
-
-出错时间:03/30/2025 08:20:48
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.ProjectData.TeamGroup.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\ProjectData\TeamGroup.aspx.cs:行号 312
- 在 FineUIPro.Web.ProjectData.TeamGroup.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\ProjectData\TeamGroup.aspx.cs:行号 26
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/30/2025 08:24:24
-出错文件:http://localhost:4528/ProjectData/TeamGroup.aspx
-IP地址:::1
-
-出错时间:03/30/2025 08:24:24
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInvocation(InvocationExpression invoke)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitWhere(Expression sequence, LambdaExpression predicate)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSelect(Expression sequence, LambdaExpression selector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitAggregate(Expression sequence, LambdaExpression lambda, SqlNodeType aggType, Type returnType)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.ConvertOuter(Expression node)
- 在 System.Data.Linq.SqlClient.SqlProvider.BuildQuery(Expression query, SqlNodeAnnotations annotations)
- 在 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 在 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
- 在 System.Linq.Queryable.Count[TSource](IQueryable`1 source)
- 在 FineUIPro.Web.common.mainProject.getPersonWorkTime() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 119
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 50
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/30/2025 08:24:54
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:03/30/2025 08:24:55
-
-
-错误信息开始=====>
-错误类型:WebException
-错误信息:无法连接到远程服务器
-错误堆栈:
- 在 System.Net.HttpWebRequest.GetRequestStream(TransportContext& context)
- 在 System.Net.HttpWebRequest.GetRequestStream()
- 在 BLL.APIGetHttpService.OutsideHttp(String url, String method, String contenttype, Hashtable header, String data) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\BLL\API\APIGetHttpService.cs:行号 120
- 在 FineUIPro.Web.ProjectData.WorkArea.btnImport_Click(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\ProjectData\WorkArea.aspx.cs:行号 346
- 在 FineUIPro.Button.OnClick(EventArgs e)
- 在 (Button , EventArgs )
- 在 FineUIPro.Button.RaisePostBackEvent(String eventArgument)
- 在 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
- 在 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-----错误类型:SocketException
-----错误信息:
-----由于连接方在一段时间后没有正确答复或连接的主机没有反应,连接尝试失败。 123.150.65.29:9090
-----错误堆栈:
- 在 System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress)
- 在 System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception)
-出错时间:03/30/2025 12:14:30
-出错文件:http://localhost:4528/ProjectData/WorkArea.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/30/2025 12:14:30
-
-
-错误信息开始=====>
-错误类型:ChangeConflictException
-错误信息:找不到行或行已更改。
-错误堆栈:
- 在 System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode)
- 在 System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode)
- 在 System.Data.Linq.DataContext.SubmitChanges()
- 在 BLL.WorkAreaService.AddWorkArea(ProjectData_WorkArea WorkArea) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\BLL\ProjectData\WorkAreaService.cs:行号 45
- 在 FineUIPro.Web.common.ProjectSet.WorkAreaEdit.btnSave_Click(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\ProjectData\WorkAreaEdit.aspx.cs:行号 140
- 在 FineUIPro.Button.OnClick(EventArgs e)
- 在 (Button , EventArgs )
- 在 FineUIPro.Button.RaisePostBackEvent(String eventArgument)
- 在 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
- 在 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/30/2025 12:14:50
-出错文件:http://localhost:4528/ProjectData/WorkAreaEdit.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/30/2025 12:14:50
-
-
-错误信息开始=====>
-错误类型:ChangeConflictException
-错误信息:找不到行或行已更改。
-错误堆栈:
- 在 System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode)
- 在 System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode)
- 在 System.Data.Linq.DataContext.SubmitChanges()
- 在 BLL.WorkAreaService.AddWorkArea(ProjectData_WorkArea WorkArea) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\BLL\ProjectData\WorkAreaService.cs:行号 45
- 在 FineUIPro.Web.common.ProjectSet.WorkAreaEdit.btnSave_Click(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\ProjectData\WorkAreaEdit.aspx.cs:行号 140
- 在 FineUIPro.Button.OnClick(EventArgs e)
- 在 (Button , EventArgs )
- 在 FineUIPro.Button.RaisePostBackEvent(String eventArgument)
- 在 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
- 在 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/30/2025 12:14:57
-出错文件:http://localhost:4528/ProjectData/WorkAreaEdit.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/30/2025 12:14:57
-
-
-错误信息开始=====>
-错误类型:ChangeConflictException
-错误信息:找不到行或行已更改。
-错误堆栈:
- 在 System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode)
- 在 System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode)
- 在 System.Data.Linq.DataContext.SubmitChanges()
- 在 BLL.UnitWorkService.AddUnitWork(WBS_UnitWork UnitWork) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\BLL\ProjectData\UnitWorkService.cs:行号 41
- 在 FineUIPro.Web.ProjectData.UnitWorkEdit.SaveData(Boolean bl) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\ProjectData\UnitWorkEdit.aspx.cs:行号 185
- 在 FineUIPro.Web.ProjectData.UnitWorkEdit.btnSave_Click(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\ProjectData\UnitWorkEdit.aspx.cs:行号 81
- 在 FineUIPro.Button.OnClick(EventArgs e)
- 在 (Button , EventArgs )
- 在 FineUIPro.Button.RaisePostBackEvent(String eventArgument)
- 在 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
- 在 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/30/2025 12:15:50
-出错文件:http://localhost:4528/ProjectData/UnitWorkEdit.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/30/2025 12:15:50
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.indexProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\indexProject.aspx.cs:行号 369
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/30/2025 23:09:07
-出错文件:http://localhost:4528/indexProject.aspx
-IP地址:::1
-
-出错时间:03/30/2025 23:09:08
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.indexProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\indexProject.aspx.cs:行号 369
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/30/2025 23:09:08
-出错文件:http://localhost:4528/indexProject.aspx?projectId=9f8c1ed9-8021-486e-aab3-4a46f8c715cb
-IP地址:::1
-
-出错时间:03/30/2025 23:09:08
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.index.Page_Init(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\index.aspx.cs:行号 57
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnInit(EventArgs e)
- 在 System.Web.UI.Page.OnInit(EventArgs e)
- 在 System.Web.UI.Control.InitRecursive(Control namingContainer)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/30/2025 23:13:23
-出错文件:http://localhost:4528/index.aspx
-IP地址:::1
-
-出错时间:03/30/2025 23:13:23
-
-
-错误信息开始=====>
-错误类型:ChangeConflictException
-错误信息:找不到行或行已更改。
-错误堆栈:
- 在 System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode)
- 在 System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode)
- 在 System.Data.Linq.DataContext.SubmitChanges()
- 在 BLL.UserService.UpdateUser(Sys_User user) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\BLL\SysManage\UserService.cs:行号 350
- 在 FineUIPro.Web.SysManage.UserListEdit.btnSave_Click(Object sender, EventArgs e)
- 在 FineUIPro.Button.OnClick(EventArgs e)
- 在 (Button , EventArgs )
- 在 FineUIPro.Button.RaisePostBackEvent(String eventArgument)
- 在 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
- 在 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/30/2025 23:19:16
-出错文件:http://localhost:4528/SysManage/UserListEdit.aspx?userId=e8a6e050-635f-4df8-8844-c8f959620fc2&type=0
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/30/2025 23:19:16
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 769
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 43
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/30/2025 23:27:37
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-
-出错时间:03/30/2025 23:27:37
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.BindGrid()
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.Page_Load(Object sender, EventArgs e)
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/30/2025 23:33:36
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-
-出错时间:03/30/2025 23:33:36
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.BindGrid() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 88
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 77
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/30/2025 23:36:06
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-
-出错时间:03/30/2025 23:36:06
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.BindGrid() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 83
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 72
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/30/2025 23:41:03
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-
-出错时间:03/30/2025 23:41:03
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.BindGrid() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 83
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 72
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/30/2025 23:51:36
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-
-出错时间:03/30/2025 23:51:36
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.BindGrid() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 85
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 73
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 00:16:34
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-
-出错时间:03/31/2025 00:16:34
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.SetUnitProject() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 257
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 77
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 10:01:25
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-
-出错时间:03/31/2025 10:01:25
-
-
-
-错误信息开始=====>
-错误类型:NotSupportedException
-错误信息:不允许在查询中显式构造实体类型“Model.Base_Unit”。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMemberInit(MemberInitExpression init)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSelect(Expression sequence, LambdaExpression selector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.ConvertOuter(Expression node)
- 在 System.Data.Linq.SqlClient.SqlProvider.BuildQuery(Expression query, SqlNodeAnnotations annotations)
- 在 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 在 System.Data.Linq.DataQuery`1.System.Collections.Generic.IEnumerable.GetEnumerator()
- 在 System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
- 在 System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.SetResponsibleUnit()
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.Page_Load(Object sender, EventArgs e)
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 13:15:34
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 13:15:34
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.SetUnitProject() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 256
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 78
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 13:16:55
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-
-出错时间:03/31/2025 13:16:55
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.SetUnitProject() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 228
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 78
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 13:25:45
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-
-出错时间:03/31/2025 13:25:45
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.index.Page_Init(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\index.aspx.cs:行号 57
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnInit(EventArgs e)
- 在 System.Web.UI.Page.OnInit(EventArgs e)
- 在 System.Web.UI.Control.InitRecursive(Control namingContainer)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:10:46
-出错文件:http://localhost:4528/index.aspx
-IP地址:::1
-
-出错时间:03/31/2025 14:10:46
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.index.Page_Init(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\index.aspx.cs:行号 57
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnInit(EventArgs e)
- 在 System.Web.UI.Page.OnInit(EventArgs e)
- 在 System.Web.UI.Control.InitRecursive(Control namingContainer)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:10:56
-出错文件:http://localhost:4528/index.aspx
-IP地址:::1
-
-出错时间:03/31/2025 14:10:56
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.index.Page_Init(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\index.aspx.cs:行号 57
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnInit(EventArgs e)
- 在 System.Web.UI.Page.OnInit(EventArgs e)
- 在 System.Web.UI.Control.InitRecursive(Control namingContainer)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:26:24
-出错文件:http://localhost:4528/index.aspx
-IP地址:::1
-
-出错时间:03/31/2025 14:26:24
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (TreeNode , Boolean )
- 在 FineUIPro.Tree.LoadPostData(String postDataKey, NameValueCollection postCollection)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:37:32
-出错文件:http://localhost:4528/SysManage/RolePower.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 14:37:32
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (TreeNode , Boolean )
- 在 FineUIPro.Tree.LoadPostData(String postDataKey, NameValueCollection postCollection)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:38:43
-出错文件:http://localhost:4528/SysManage/RolePower.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 14:38:43
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (TreeNode , Boolean )
- 在 FineUIPro.Tree.LoadPostData(String postDataKey, NameValueCollection postCollection)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:38:49
-出错文件:http://localhost:4528/SysManage/RolePower.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 14:38:49
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (TreeNode , Boolean )
- 在 FineUIPro.Tree.LoadPostData(String postDataKey, NameValueCollection postCollection)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:38:53
-出错文件:http://localhost:4528/SysManage/RolePower.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 14:38:53
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (TreeNode , Boolean )
- 在 FineUIPro.Tree.LoadPostData(String postDataKey, NameValueCollection postCollection)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:38:54
-出错文件:http://localhost:4528/SysManage/RolePower.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 14:38:54
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (TreeNode , Boolean )
- 在 FineUIPro.Tree.LoadPostData(String postDataKey, NameValueCollection postCollection)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:38:54
-出错文件:http://localhost:4528/SysManage/RolePower.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 14:38:54
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (TreeNode , Boolean )
- 在 FineUIPro.Tree.LoadPostData(String postDataKey, NameValueCollection postCollection)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:38:54
-出错文件:http://localhost:4528/SysManage/RolePower.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 14:38:54
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (TreeNode , Boolean )
- 在 FineUIPro.Tree.LoadPostData(String postDataKey, NameValueCollection postCollection)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:38:54
-出错文件:http://localhost:4528/SysManage/RolePower.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 14:38:54
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (TreeNode , Boolean )
- 在 FineUIPro.Tree.LoadPostData(String postDataKey, NameValueCollection postCollection)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:38:55
-出错文件:http://localhost:4528/SysManage/RolePower.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 14:38:55
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (TreeNode , Boolean )
- 在 FineUIPro.Tree.LoadPostData(String postDataKey, NameValueCollection postCollection)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:38:55
-出错文件:http://localhost:4528/SysManage/RolePower.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 14:38:55
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (TreeNode , Boolean )
- 在 FineUIPro.Tree.LoadPostData(String postDataKey, NameValueCollection postCollection)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:38:55
-出错文件:http://localhost:4528/SysManage/RolePower.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 14:38:55
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (TreeNode , Boolean )
- 在 FineUIPro.Tree.LoadPostData(String postDataKey, NameValueCollection postCollection)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:38:55
-出错文件:http://localhost:4528/SysManage/RolePower.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 14:38:55
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (TreeNode , Boolean )
- 在 FineUIPro.Tree.LoadPostData(String postDataKey, NameValueCollection postCollection)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:38:55
-出错文件:http://localhost:4528/SysManage/RolePower.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 14:38:55
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (TreeNode , Boolean )
- 在 FineUIPro.Tree.LoadPostData(String postDataKey, NameValueCollection postCollection)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:38:55
-出错文件:http://localhost:4528/SysManage/RolePower.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 14:38:55
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (TreeNode , Boolean )
- 在 FineUIPro.Tree.LoadPostData(String postDataKey, NameValueCollection postCollection)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:38:56
-出错文件:http://localhost:4528/SysManage/RolePower.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 14:38:56
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (TreeNode , Boolean )
- 在 FineUIPro.Tree.LoadPostData(String postDataKey, NameValueCollection postCollection)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:38:57
-出错文件:http://localhost:4528/SysManage/RolePower.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 14:38:57
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (TreeNode , Boolean )
- 在 FineUIPro.Tree.LoadPostData(String postDataKey, NameValueCollection postCollection)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:39:38
-出错文件:http://localhost:4528/SysManage/RolePower.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 14:39:38
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (TreeNode , Boolean )
- 在 FineUIPro.Tree.LoadPostData(String postDataKey, NameValueCollection postCollection)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:39:42
-出错文件:http://localhost:4528/SysManage/RolePower.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 14:39:42
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (TreeNode , Boolean )
- 在 FineUIPro.Tree.LoadPostData(String postDataKey, NameValueCollection postCollection)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:39:43
-出错文件:http://localhost:4528/SysManage/RolePower.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 14:39:43
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (TreeNode , Boolean )
- 在 FineUIPro.Tree.LoadPostData(String postDataKey, NameValueCollection postCollection)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:39:44
-出错文件:http://localhost:4528/SysManage/RolePower.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 14:39:44
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (TreeNode , Boolean )
- 在 FineUIPro.Tree.LoadPostData(String postDataKey, NameValueCollection postCollection)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:39:45
-出错文件:http://localhost:4528/SysManage/RolePower.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 14:39:45
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (TreeNode , Boolean )
- 在 FineUIPro.Tree.LoadPostData(String postDataKey, NameValueCollection postCollection)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:39:52
-出错文件:http://localhost:4528/SysManage/RolePower.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 14:39:52
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (TreeNode , Boolean )
- 在 FineUIPro.Tree.LoadPostData(String postDataKey, NameValueCollection postCollection)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:39:53
-出错文件:http://localhost:4528/SysManage/RolePower.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 14:39:53
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (TreeNode , Boolean )
- 在 FineUIPro.Tree.LoadPostData(String postDataKey, NameValueCollection postCollection)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:39:54
-出错文件:http://localhost:4528/SysManage/RolePower.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 14:39:54
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (TreeNode , Boolean )
- 在 FineUIPro.Tree.LoadPostData(String postDataKey, NameValueCollection postCollection)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:39:54
-出错文件:http://localhost:4528/SysManage/RolePower.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 14:39:54
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (TreeNode , Boolean )
- 在 FineUIPro.Tree.LoadPostData(String postDataKey, NameValueCollection postCollection)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:39:55
-出错文件:http://localhost:4528/SysManage/RolePower.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 14:39:55
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (TreeNode , Boolean )
- 在 FineUIPro.Tree.LoadPostData(String postDataKey, NameValueCollection postCollection)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:39:56
-出错文件:http://localhost:4528/SysManage/RolePower.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 14:39:56
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (TreeNode , Boolean )
- 在 FineUIPro.Tree.LoadPostData(String postDataKey, NameValueCollection postCollection)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:39:56
-出错文件:http://localhost:4528/SysManage/RolePower.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 14:39:56
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (TreeNode , Boolean )
- 在 FineUIPro.Tree.LoadPostData(String postDataKey, NameValueCollection postCollection)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:39:57
-出错文件:http://localhost:4528/SysManage/RolePower.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 14:39:57
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (TreeNode , Boolean )
- 在 FineUIPro.Tree.LoadPostData(String postDataKey, NameValueCollection postCollection)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:39:58
-出错文件:http://localhost:4528/SysManage/RolePower.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 14:39:58
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (TreeNode , Boolean )
- 在 FineUIPro.Tree.LoadPostData(String postDataKey, NameValueCollection postCollection)
- 在 System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 14:40:00
-出错文件:http://localhost:4528/SysManage/RolePower.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:03/31/2025 14:40:00
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.BaseInfo.RiskLevel.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\BaseInfo\RiskLevel.aspx.cs:行号 221
- 在 FineUIPro.Web.BaseInfo.RiskLevel.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\BaseInfo\RiskLevel.aspx.cs:行号 23
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 15:43:41
-出错文件:http://localhost:4528/BaseInfo/RiskLevel.aspx
-IP地址:::1
-
-出错时间:03/31/2025 15:43:42
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.OfficeCheck.Inspect.SafetyInspectionEdit.BindGrid() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\SafetyInspectionEdit.aspx.cs:行号 147
- 在 FineUIPro.Web.OfficeCheck.Inspect.SafetyInspectionEdit.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\SafetyInspectionEdit.aspx.cs:行号 85
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/31/2025 18:30:33
-出错文件:http://localhost:4528/OfficeCheck/Inspect/SafetyInspectionEdit.aspx
-IP地址:::1
-
-出错时间:03/31/2025 18:30:33
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInvocation(InvocationExpression invoke)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitWhere(Expression sequence, LambdaExpression predicate)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSelect(Expression sequence, LambdaExpression selector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitAggregate(Expression sequence, LambdaExpression lambda, SqlNodeType aggType, Type returnType)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.ConvertOuter(Expression node)
- 在 System.Data.Linq.SqlClient.SqlProvider.BuildQuery(Expression query, SqlNodeAnnotations annotations)
- 在 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 在 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
- 在 System.Linq.Queryable.Count[TSource](IQueryable`1 source)
- 在 FineUIPro.Web.common.mainProject.getPersonWorkTime() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 119
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 50
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/03/2025 21:42:07
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/03/2025 21:42:07
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.indexProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\indexProject.aspx.cs:行号 369
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/03/2025 21:54:55
-出错文件:http://localhost:4528/indexProject.aspx
-IP地址:::1
-
-出错时间:04/03/2025 21:54:55
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx(238): error CS0103: 当前上下文中不存在名称“divProjectImg”
-错误堆栈:
- 在 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)
-出错时间:04/03/2025 21:59:36
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/03/2025 21:59:36
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx(238): error CS0103: 当前上下文中不存在名称“divProjectImg”
-错误堆栈:
- 在 System.Web.Compilation.BuildManager.PostProcessFoundBuildResult(BuildResult result, Boolean keyFromVPP, VirtualPath virtualPath)
- 在 System.Web.Compilation.BuildManager.GetBuildResultFromCacheInternal(String cacheKey, Boolean keyFromVPP, VirtualPath virtualPath, Int64 hashCode, Boolean ensureIsUpToDate)
- 在 System.Web.Compilation.BuildManager.GetVPathBuildResultFromCacheInternal(VirtualPath virtualPath, Boolean ensureIsUpToDate)
- 在 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)
-出错时间:04/03/2025 21:59:44
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/03/2025 21:59:44
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx(242): error CS0103: 当前上下文中不存在名称“divProjectImg”
-错误堆栈:
- 在 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)
-出错时间:04/03/2025 22:01:21
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/03/2025 22:01:21
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx(242): error CS0103: 当前上下文中不存在名称“divProjectImg”
-错误堆栈:
- 在 System.Web.Compilation.BuildManager.PostProcessFoundBuildResult(BuildResult result, Boolean keyFromVPP, VirtualPath virtualPath)
- 在 System.Web.Compilation.BuildManager.GetBuildResultFromCacheInternal(String cacheKey, Boolean keyFromVPP, VirtualPath virtualPath, Int64 hashCode, Boolean ensureIsUpToDate)
- 在 System.Web.Compilation.BuildManager.GetVPathBuildResultFromCacheInternal(VirtualPath virtualPath, Boolean ensureIsUpToDate)
- 在 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)
-出错时间:04/03/2025 22:01:29
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/03/2025 22:01:29
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx(242): error CS0103: 当前上下文中不存在名称“divProjectImg”
-错误堆栈:
- 在 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)
-出错时间:04/03/2025 22:01:33
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/03/2025 22:01:33
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx(242): error CS0103: 当前上下文中不存在名称“divProjectImg”
-错误堆栈:
- 在 System.Web.Compilation.BuildManager.PostProcessFoundBuildResult(BuildResult result, Boolean keyFromVPP, VirtualPath virtualPath)
- 在 System.Web.Compilation.BuildManager.GetBuildResultFromCacheInternal(String cacheKey, Boolean keyFromVPP, VirtualPath virtualPath, Int64 hashCode, Boolean ensureIsUpToDate)
- 在 System.Web.Compilation.BuildManager.GetVPathBuildResultFromCacheInternal(VirtualPath virtualPath, Boolean ensureIsUpToDate)
- 在 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)
-出错时间:04/03/2025 22:01:36
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/03/2025 22:01:36
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx(164): error CS1061: “ASP.common_mainproject_aspx”不包含“DatePicker1_TextChanged”的定义,并且找不到可接受类型为“ASP.common_mainproject_aspx”的第一个参数的扩展方法“DatePicker1_TextChanged”(是否缺少 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)
-出错时间:04/04/2025 14:36:49
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/04/2025 14:36:49
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInvocation(InvocationExpression invoke)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitWhere(Expression sequence, LambdaExpression predicate)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSelect(Expression sequence, LambdaExpression selector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitAggregate(Expression sequence, LambdaExpression lambda, SqlNodeType aggType, Type returnType)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.ConvertOuter(Expression node)
- 在 System.Data.Linq.SqlClient.SqlProvider.BuildQuery(Expression query, SqlNodeAnnotations annotations)
- 在 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 在 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
- 在 System.Linq.Queryable.Count[TSource](IQueryable`1 source)
- 在 FineUIPro.Web.common.mainProject.getPersonWorkTime() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 119
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 50
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/04/2025 14:37:28
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/04/2025 14:37:28
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx(164): error CS1061: “ASP.common_mainproject_aspx”不包含“DatePicker1_TextChanged”的定义,并且找不到可接受类型为“ASP.common_mainproject_aspx”的第一个参数的扩展方法“DatePicker1_TextChanged”(是否缺少 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)
-出错时间:04/04/2025 14:42:09
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/04/2025 14:42:09
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx(167): error CS1061: “ASP.common_mainproject_aspx”不包含“DatePicker1_TextChanged”的定义,并且找不到可接受类型为“ASP.common_mainproject_aspx”的第一个参数的扩展方法“DatePicker1_TextChanged”(是否缺少 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)
-出错时间:04/04/2025 14:43:28
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/04/2025 14:43:28
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx(165): error CS1061: “ASP.common_mainproject_aspx”不包含“DatePicker1_TextChanged”的定义,并且找不到可接受类型为“ASP.common_mainproject_aspx”的第一个参数的扩展方法“DatePicker1_TextChanged”(是否缺少 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)
-出错时间:04/04/2025 14:44:30
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/04/2025 14:44:30
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx(164): error CS1061: “ASP.common_mainproject_aspx”不包含“TextBox_TextChanged”的定义,并且找不到可接受类型为“ASP.common_mainproject_aspx”的第一个参数的扩展方法“TextBox_TextChanged”(是否缺少 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)
-出错时间:04/04/2025 14:47:10
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/04/2025 14:47:10
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInvocation(InvocationExpression invoke)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitWhere(Expression sequence, LambdaExpression predicate)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSelect(Expression sequence, LambdaExpression selector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitAggregate(Expression sequence, LambdaExpression lambda, SqlNodeType aggType, Type returnType)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.ConvertOuter(Expression node)
- 在 System.Data.Linq.SqlClient.SqlProvider.BuildQuery(Expression query, SqlNodeAnnotations annotations)
- 在 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 在 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
- 在 System.Linq.Queryable.Count[TSource](IQueryable`1 source)
- 在 FineUIPro.Web.common.mainProject.getPersonWorkTime() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 125
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 50
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/04/2025 14:47:48
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/04/2025 14:47:48
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:未知 Web 方法 GetServiceData。
-参数名: methodName
-错误堆栈:
- 在 System.Web.Script.Services.WebServiceData.GetMethodData(String methodName)
- 在 System.Web.Handlers.ScriptModule.OnPostAcquireRequestState(Object sender, EventArgs eventArgs)
- 在 System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-出错时间:04/04/2025 15:13:00
-出错文件:http://localhost:4528/common/mainProject.aspx/GetServiceData
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/04/2025 15:13:01
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:未知 Web 方法 GetServiceData。
-参数名: methodName
-错误堆栈:
- 在 System.Web.Script.Services.WebServiceData.GetMethodData(String methodName)
- 在 System.Web.Handlers.ScriptModule.OnPostAcquireRequestState(Object sender, EventArgs eventArgs)
- 在 System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-出错时间:04/04/2025 15:13:25
-出错文件:http://localhost:4528/common/mainProject.aspx/GetServiceData
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/04/2025 15:13:25
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:未知 Web 方法 GetServiceData。
-参数名: methodName
-错误堆栈:
- 在 System.Web.Script.Services.WebServiceData.GetMethodData(String methodName)
- 在 System.Web.Handlers.ScriptModule.OnPostAcquireRequestState(Object sender, EventArgs eventArgs)
- 在 System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-出错时间:04/04/2025 15:14:11
-出错文件:http://localhost:4528/common/mainProject.aspx/GetServiceData
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/04/2025 15:14:11
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:未知 Web 方法 GetServiceData。
-参数名: methodName
-错误堆栈:
- 在 System.Web.Script.Services.WebServiceData.GetMethodData(String methodName)
- 在 System.Web.Handlers.ScriptModule.OnPostAcquireRequestState(Object sender, EventArgs eventArgs)
- 在 System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-出错时间:04/04/2025 15:14:44
-出错文件:http://localhost:4528/common/mainProject.aspx/GetServiceData
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/04/2025 15:14:44
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:未知 Web 方法 GetServiceData。
-参数名: methodName
-错误堆栈:
- 在 System.Web.Script.Services.WebServiceData.GetMethodData(String methodName)
- 在 System.Web.Handlers.ScriptModule.OnPostAcquireRequestState(Object sender, EventArgs eventArgs)
- 在 System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-出错时间:04/04/2025 15:20:48
-出错文件:http://localhost:4528/common/mainProject.aspx/GetServiceData
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/04/2025 15:20:48
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:未知 Web 方法 GetServiceData。
-参数名: methodName
-错误堆栈:
- 在 System.Web.Script.Services.WebServiceData.GetMethodData(String methodName)
- 在 System.Web.Handlers.ScriptModule.OnPostAcquireRequestState(Object sender, EventArgs eventArgs)
- 在 System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-出错时间:04/04/2025 15:21:55
-出错文件:http://localhost:4528/common/mainProject.aspx/GetServiceData
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/04/2025 15:21:55
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInvocation(InvocationExpression invoke)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitWhere(Expression sequence, LambdaExpression predicate)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSelect(Expression sequence, LambdaExpression selector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitAggregate(Expression sequence, LambdaExpression lambda, SqlNodeType aggType, Type returnType)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.ConvertOuter(Expression node)
- 在 System.Data.Linq.SqlClient.SqlProvider.BuildQuery(Expression query, SqlNodeAnnotations annotations)
- 在 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 在 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
- 在 System.Linq.Queryable.Count[TSource](IQueryable`1 source)
- 在 FineUIPro.Web.common.mainProject.getPersonWorkTime() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 138
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 52
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/04/2025 15:26:13
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/04/2025 15:26:13
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInvocation(InvocationExpression invoke)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitWhere(Expression sequence, LambdaExpression predicate)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSelect(Expression sequence, LambdaExpression selector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitAggregate(Expression sequence, LambdaExpression lambda, SqlNodeType aggType, Type returnType)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.ConvertOuter(Expression node)
- 在 System.Data.Linq.SqlClient.SqlProvider.BuildQuery(Expression query, SqlNodeAnnotations annotations)
- 在 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 在 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
- 在 System.Linq.Queryable.Count[TSource](IQueryable`1 source)
- 在 FineUIPro.Web.common.mainProject.getPersonWorkTime() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 138
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 52
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/04/2025 15:30:18
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/04/2025 15:30:18
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInvocation(InvocationExpression invoke)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitWhere(Expression sequence, LambdaExpression predicate)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSelect(Expression sequence, LambdaExpression selector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitAggregate(Expression sequence, LambdaExpression lambda, SqlNodeType aggType, Type returnType)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.ConvertOuter(Expression node)
- 在 System.Data.Linq.SqlClient.SqlProvider.BuildQuery(Expression query, SqlNodeAnnotations annotations)
- 在 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 在 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
- 在 System.Linq.Queryable.Count[TSource](IQueryable`1 source)
- 在 FineUIPro.Web.common.mainProject.getPersonWorkTime() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 138
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 52
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/04/2025 15:32:16
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/04/2025 15:32:16
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInvocation(InvocationExpression invoke)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitWhere(Expression sequence, LambdaExpression predicate)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSelect(Expression sequence, LambdaExpression selector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitAggregate(Expression sequence, LambdaExpression lambda, SqlNodeType aggType, Type returnType)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.ConvertOuter(Expression node)
- 在 System.Data.Linq.SqlClient.SqlProvider.BuildQuery(Expression query, SqlNodeAnnotations annotations)
- 在 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 在 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
- 在 System.Linq.Queryable.Count[TSource](IQueryable`1 source)
- 在 FineUIPro.Web.common.mainProject.getPersonWorkTime() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 138
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 52
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/04/2025 15:35:39
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/04/2025 15:35:39
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInvocation(InvocationExpression invoke)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitWhere(Expression sequence, LambdaExpression predicate)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSelect(Expression sequence, LambdaExpression selector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitAggregate(Expression sequence, LambdaExpression lambda, SqlNodeType aggType, Type returnType)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.ConvertOuter(Expression node)
- 在 System.Data.Linq.SqlClient.SqlProvider.BuildQuery(Expression query, SqlNodeAnnotations annotations)
- 在 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 在 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
- 在 System.Linq.Queryable.Count[TSource](IQueryable`1 source)
- 在 FineUIPro.Web.common.mainProject.getPersonWorkTime() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 138
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 52
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/04/2025 15:39:35
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/04/2025 15:39:35
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInvocation(InvocationExpression invoke)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitWhere(Expression sequence, LambdaExpression predicate)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSelect(Expression sequence, LambdaExpression selector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitAggregate(Expression sequence, LambdaExpression lambda, SqlNodeType aggType, Type returnType)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.ConvertOuter(Expression node)
- 在 System.Data.Linq.SqlClient.SqlProvider.BuildQuery(Expression query, SqlNodeAnnotations annotations)
- 在 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 在 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
- 在 System.Linq.Queryable.Count[TSource](IQueryable`1 source)
- 在 FineUIPro.Web.common.mainProject.getPersonWorkTime() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 148
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 52
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/04/2025 15:48:07
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/04/2025 15:48:07
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInvocation(InvocationExpression invoke)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitWhere(Expression sequence, LambdaExpression predicate)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSelect(Expression sequence, LambdaExpression selector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitAggregate(Expression sequence, LambdaExpression lambda, SqlNodeType aggType, Type returnType)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.ConvertOuter(Expression node)
- 在 System.Data.Linq.SqlClient.SqlProvider.BuildQuery(Expression query, SqlNodeAnnotations annotations)
- 在 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 在 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
- 在 System.Linq.Queryable.Count[TSource](IQueryable`1 source)
- 在 FineUIPro.Web.common.mainProject.getPersonWorkTime() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 150
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 52
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/04/2025 16:00:27
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/04/2025 16:00:27
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (PageManager )
- 在 FineUIPro.ControlBase.OnFirstPreRender()
- 在 (ControlBase )
- 在 FineUIPro.Component.OnFirstPreRender()
- 在 (Component )
- 在 FineUIPro.BoxComponent.OnFirstPreRender()
- 在 (BoxComponent )
- 在 FineUIPro.Field.OnFirstPreRender()
- 在 (Field )
- 在 FineUIPro.TextField.OnFirstPreRender()
- 在 (TextField )
- 在 FineUIPro.RealTextField.OnFirstPreRender()
- 在 (RealTextField )
- 在 FineUIPro.DatePicker.OnFirstPreRender()
- 在 (ControlBase )
- 在 FineUIPro.ControlBase.jcLvABeDsHQyyAbZhsfaLCMRNprM()
- 在 (ControlBase )
- 在 xCmAQBtUiwmKoGvxhPONMYvYbMln.jcLvABeDsHQyyAbZhsfaLCMRNprM(Object , EventArgs )
- 在 System.Web.UI.Page.OnPreRenderComplete(EventArgs e)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/04/2025 16:10:58
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/04/2025 16:10:58
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (PageManager )
- 在 FineUIPro.ControlBase.OnFirstPreRender()
- 在 (ControlBase )
- 在 FineUIPro.Component.OnFirstPreRender()
- 在 (Component )
- 在 FineUIPro.BoxComponent.OnFirstPreRender()
- 在 (BoxComponent )
- 在 FineUIPro.Field.OnFirstPreRender()
- 在 (Field )
- 在 FineUIPro.TextField.OnFirstPreRender()
- 在 (TextField )
- 在 FineUIPro.RealTextField.OnFirstPreRender()
- 在 (RealTextField )
- 在 FineUIPro.DatePicker.OnFirstPreRender()
- 在 (ControlBase )
- 在 FineUIPro.ControlBase.jcLvABeDsHQyyAbZhsfaLCMRNprM()
- 在 (ControlBase )
- 在 xCmAQBtUiwmKoGvxhPONMYvYbMln.jcLvABeDsHQyyAbZhsfaLCMRNprM(Object , EventArgs )
- 在 System.Web.UI.Page.OnPreRenderComplete(EventArgs e)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/04/2025 16:11:11
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/04/2025 16:11:11
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (PageManager )
- 在 FineUIPro.ControlBase.OnFirstPreRender()
- 在 (ControlBase )
- 在 FineUIPro.Component.OnFirstPreRender()
- 在 (Component )
- 在 FineUIPro.BoxComponent.OnFirstPreRender()
- 在 (BoxComponent )
- 在 FineUIPro.Field.OnFirstPreRender()
- 在 (Field )
- 在 FineUIPro.TextField.OnFirstPreRender()
- 在 (TextField )
- 在 FineUIPro.RealTextField.OnFirstPreRender()
- 在 (RealTextField )
- 在 FineUIPro.DatePicker.OnFirstPreRender()
- 在 (ControlBase )
- 在 FineUIPro.ControlBase.jcLvABeDsHQyyAbZhsfaLCMRNprM()
- 在 (ControlBase )
- 在 xCmAQBtUiwmKoGvxhPONMYvYbMln.jcLvABeDsHQyyAbZhsfaLCMRNprM(Object , EventArgs )
- 在 System.Web.UI.Page.OnPreRenderComplete(EventArgs e)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/04/2025 16:11:46
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/04/2025 16:11:46
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInvocation(InvocationExpression invoke)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitWhere(Expression sequence, LambdaExpression predicate)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSelect(Expression sequence, LambdaExpression selector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitAggregate(Expression sequence, LambdaExpression lambda, SqlNodeType aggType, Type returnType)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.ConvertOuter(Expression node)
- 在 System.Data.Linq.SqlClient.SqlProvider.BuildQuery(Expression query, SqlNodeAnnotations annotations)
- 在 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 在 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
- 在 System.Linq.Queryable.Count[TSource](IQueryable`1 source)
- 在 FineUIPro.Web.common.mainProject.getPersonWorkTime() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 150
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 52
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/04/2025 16:14:13
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/04/2025 16:14:13
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (PageManager )
- 在 FineUIPro.ControlBase.OnFirstPreRender()
- 在 (ControlBase )
- 在 FineUIPro.Component.OnFirstPreRender()
- 在 (Component )
- 在 FineUIPro.BoxComponent.OnFirstPreRender()
- 在 (BoxComponent )
- 在 FineUIPro.Field.OnFirstPreRender()
- 在 (Field )
- 在 FineUIPro.TextField.OnFirstPreRender()
- 在 (TextField )
- 在 FineUIPro.RealTextField.OnFirstPreRender()
- 在 (RealTextField )
- 在 FineUIPro.DatePicker.OnFirstPreRender()
- 在 (ControlBase )
- 在 FineUIPro.ControlBase.jcLvABeDsHQyyAbZhsfaLCMRNprM()
- 在 (ControlBase )
- 在 xCmAQBtUiwmKoGvxhPONMYvYbMln.jcLvABeDsHQyyAbZhsfaLCMRNprM(Object , EventArgs )
- 在 System.Web.UI.Page.OnPreRenderComplete(EventArgs e)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/04/2025 16:14:25
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/04/2025 16:14:25
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (PageManager )
- 在 FineUIPro.ControlBase.OnFirstPreRender()
- 在 (ControlBase )
- 在 FineUIPro.Component.OnFirstPreRender()
- 在 (Component )
- 在 FineUIPro.BoxComponent.OnFirstPreRender()
- 在 (BoxComponent )
- 在 FineUIPro.Field.OnFirstPreRender()
- 在 (Field )
- 在 FineUIPro.TextField.OnFirstPreRender()
- 在 (TextField )
- 在 FineUIPro.RealTextField.OnFirstPreRender()
- 在 (RealTextField )
- 在 FineUIPro.DatePicker.OnFirstPreRender()
- 在 (ControlBase )
- 在 FineUIPro.ControlBase.jcLvABeDsHQyyAbZhsfaLCMRNprM()
- 在 (ControlBase )
- 在 xCmAQBtUiwmKoGvxhPONMYvYbMln.jcLvABeDsHQyyAbZhsfaLCMRNprM(Object , EventArgs )
- 在 System.Web.UI.Page.OnPreRenderComplete(EventArgs e)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/04/2025 16:14:37
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/04/2025 16:14:38
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (PageManager )
- 在 FineUIPro.ControlBase.OnFirstPreRender()
- 在 (ControlBase )
- 在 FineUIPro.Component.OnFirstPreRender()
- 在 (Component )
- 在 FineUIPro.BoxComponent.OnFirstPreRender()
- 在 (BoxComponent )
- 在 FineUIPro.Field.OnFirstPreRender()
- 在 (Field )
- 在 FineUIPro.TextField.OnFirstPreRender()
- 在 (TextField )
- 在 FineUIPro.RealTextField.OnFirstPreRender()
- 在 (RealTextField )
- 在 FineUIPro.DatePicker.OnFirstPreRender()
- 在 (ControlBase )
- 在 FineUIPro.ControlBase.jcLvABeDsHQyyAbZhsfaLCMRNprM()
- 在 (ControlBase )
- 在 xCmAQBtUiwmKoGvxhPONMYvYbMln.jcLvABeDsHQyyAbZhsfaLCMRNprM(Object , EventArgs )
- 在 System.Web.UI.Page.OnPreRenderComplete(EventArgs e)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/04/2025 16:15:23
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/04/2025 16:15:23
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInvocation(InvocationExpression invoke)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitWhere(Expression sequence, LambdaExpression predicate)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSelect(Expression sequence, LambdaExpression selector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitAggregate(Expression sequence, LambdaExpression lambda, SqlNodeType aggType, Type returnType)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.ConvertOuter(Expression node)
- 在 System.Data.Linq.SqlClient.SqlProvider.BuildQuery(Expression query, SqlNodeAnnotations annotations)
- 在 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 在 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
- 在 System.Linq.Queryable.Count[TSource](IQueryable`1 source)
- 在 FineUIPro.Web.common.mainProject.getPersonWorkTime() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 150
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 52
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/04/2025 16:16:01
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/04/2025 16:16:01
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:未知 Web 方法 GetSafetyProblemStatistics。
-参数名: methodName
-错误堆栈:
- 在 System.Web.Script.Services.WebServiceData.GetMethodData(String methodName)
- 在 System.Web.Handlers.ScriptModule.OnPostAcquireRequestState(Object sender, EventArgs eventArgs)
- 在 System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-出错时间:04/04/2025 17:53:15
-出错文件:http://localhost:4528/common/mainProject.aspx/GetSafetyProblemStatistics
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/04/2025 17:53:15
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInvocation(InvocationExpression invoke)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitWhere(Expression sequence, LambdaExpression predicate)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSelect(Expression sequence, LambdaExpression selector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitAggregate(Expression sequence, LambdaExpression lambda, SqlNodeType aggType, Type returnType)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.ConvertOuter(Expression node)
- 在 System.Data.Linq.SqlClient.SqlProvider.BuildQuery(Expression query, SqlNodeAnnotations annotations)
- 在 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 在 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
- 在 System.Linq.Queryable.Count[TSource](IQueryable`1 source)
- 在 FineUIPro.Web.common.mainProject.getPersonWorkTime() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 163
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 52
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/04/2025 17:54:36
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/04/2025 17:54:36
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInvocation(InvocationExpression invoke)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitWhere(Expression sequence, LambdaExpression predicate)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSelect(Expression sequence, LambdaExpression selector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitAggregate(Expression sequence, LambdaExpression lambda, SqlNodeType aggType, Type returnType)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.ConvertOuter(Expression node)
- 在 System.Data.Linq.SqlClient.SqlProvider.BuildQuery(Expression query, SqlNodeAnnotations annotations)
- 在 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 在 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
- 在 System.Linq.Queryable.Count[TSource](IQueryable`1 source)
- 在 FineUIPro.Web.common.mainProject.getPersonWorkTime() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 163
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 52
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/04/2025 17:54:42
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/04/2025 17:54:42
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInvocation(InvocationExpression invoke)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitWhere(Expression sequence, LambdaExpression predicate)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSelect(Expression sequence, LambdaExpression selector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitAggregate(Expression sequence, LambdaExpression lambda, SqlNodeType aggType, Type returnType)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.ConvertOuter(Expression node)
- 在 System.Data.Linq.SqlClient.SqlProvider.BuildQuery(Expression query, SqlNodeAnnotations annotations)
- 在 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 在 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
- 在 System.Linq.Queryable.Count[TSource](IQueryable`1 source)
- 在 FineUIPro.Web.common.mainProject.getPersonWorkTime() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 163
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 52
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/04/2025 17:54:49
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/04/2025 17:54:50
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.indexProject.Page_Load(Object sender, EventArgs e)
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/04/2025 19:08:51
-出错文件:http://localhost:4528/indexProject.aspx?projectId=0023d936-b97e-484c-9877-2b843514e919
-IP地址:::1
-
-出错时间:04/04/2025 19:08:51
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInvocation(InvocationExpression invoke)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitWhere(Expression sequence, LambdaExpression predicate)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSelect(Expression sequence, LambdaExpression selector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitAggregate(Expression sequence, LambdaExpression lambda, SqlNodeType aggType, Type returnType)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.ConvertOuter(Expression node)
- 在 System.Data.Linq.SqlClient.SqlProvider.BuildQuery(Expression query, SqlNodeAnnotations annotations)
- 在 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 在 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
- 在 System.Linq.Queryable.Count[TSource](IQueryable`1 source)
- 在 FineUIPro.Web.common.mainProject.getPersonWorkTime() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 162
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 52
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/04/2025 19:18:49
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/04/2025 19:18:49
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInvocation(InvocationExpression invoke)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitWhere(Expression sequence, LambdaExpression predicate)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSelect(Expression sequence, LambdaExpression selector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitAggregate(Expression sequence, LambdaExpression lambda, SqlNodeType aggType, Type returnType)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.ConvertOuter(Expression node)
- 在 System.Data.Linq.SqlClient.SqlProvider.BuildQuery(Expression query, SqlNodeAnnotations annotations)
- 在 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 在 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
- 在 System.Linq.Queryable.Count[TSource](IQueryable`1 source)
- 在 FineUIPro.Web.common.mainProject.getPersonWorkTime() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 179
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 53
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/04/2025 20:57:25
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/04/2025 20:57:25
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInvocation(InvocationExpression invoke)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitWhere(Expression sequence, LambdaExpression predicate)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSelect(Expression sequence, LambdaExpression selector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitAggregate(Expression sequence, LambdaExpression lambda, SqlNodeType aggType, Type returnType)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.ConvertOuter(Expression node)
- 在 System.Data.Linq.SqlClient.SqlProvider.BuildQuery(Expression query, SqlNodeAnnotations annotations)
- 在 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 在 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
- 在 System.Linq.Queryable.Count[TSource](IQueryable`1 source)
- 在 FineUIPro.Web.common.mainProject.getPersonWorkTime() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 198
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 53
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/04/2025 22:16:05
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/04/2025 22:16:05
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInvocation(InvocationExpression invoke)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitWhere(Expression sequence, LambdaExpression predicate)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSelect(Expression sequence, LambdaExpression selector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitAggregate(Expression sequence, LambdaExpression lambda, SqlNodeType aggType, Type returnType)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.ConvertOuter(Expression node)
- 在 System.Data.Linq.SqlClient.SqlProvider.BuildQuery(Expression query, SqlNodeAnnotations annotations)
- 在 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 在 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
- 在 System.Linq.Queryable.Count[TSource](IQueryable`1 source)
- 在 FineUIPro.Web.common.mainProject.getPersonWorkTime() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 198
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 53
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/04/2025 23:11:06
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/04/2025 23:11:07
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.indexProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\indexProject.aspx.cs:行号 369
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/04/2025 23:29:36
-出错文件:http://localhost:4528/indexProject.aspx?projectId=0023d936-b97e-484c-9877-2b843514e919
-IP地址:::1
-
-出错时间:04/04/2025 23:29:36
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInvocation(InvocationExpression invoke)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitWhere(Expression sequence, LambdaExpression predicate)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSelect(Expression sequence, LambdaExpression selector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitAggregate(Expression sequence, LambdaExpression lambda, SqlNodeType aggType, Type returnType)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.ConvertOuter(Expression node)
- 在 System.Data.Linq.SqlClient.SqlProvider.BuildQuery(Expression query, SqlNodeAnnotations annotations)
- 在 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 在 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
- 在 System.Linq.Queryable.Count[TSource](IQueryable`1 source)
- 在 FineUIPro.Web.common.mainProject.getPersonWorkTime() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 198
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 53
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 09:48:08
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/05/2025 09:48:08
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:未知 Web 方法 GetSafetyProblemStatistics。
-参数名: methodName
-错误堆栈:
- 在 System.Web.Script.Services.WebServiceData.GetMethodData(String methodName)
- 在 System.Web.Handlers.ScriptModule.OnPostAcquireRequestState(Object sender, EventArgs eventArgs)
- 在 System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-出错时间:04/05/2025 15:15:08
-出错文件:http://localhost:4528/common/main3.aspx/GetSafetyProblemStatistics
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/05/2025 15:15:08
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:未知 Web 方法 GetSafetyProblemStatistics。
-参数名: methodName
-错误堆栈:
- 在 System.Web.Script.Services.WebServiceData.GetMethodData(String methodName)
- 在 System.Web.Handlers.ScriptModule.OnPostAcquireRequestState(Object sender, EventArgs eventArgs)
- 在 System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-出错时间:04/05/2025 15:15:17
-出错文件:http://localhost:4528/common/main3.aspx/GetSafetyProblemStatistics
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/05/2025 15:15:17
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:未知 Web 方法 GetSafetyProblemStatistics。
-参数名: methodName
-错误堆栈:
- 在 System.Web.Script.Services.WebServiceData.GetMethodData(String methodName)
- 在 System.Web.Handlers.ScriptModule.OnPostAcquireRequestState(Object sender, EventArgs eventArgs)
- 在 System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-出错时间:04/05/2025 15:15:48
-出错文件:http://localhost:4528/common/main3.aspx/GetSafetyProblemStatistics
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/05/2025 15:15:48
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInvocation(InvocationExpression invoke)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitWhere(Expression sequence, LambdaExpression predicate)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSelect(Expression sequence, LambdaExpression selector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitAggregate(Expression sequence, LambdaExpression lambda, SqlNodeType aggType, Type returnType)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.ConvertOuter(Expression node)
- 在 System.Data.Linq.SqlClient.SqlProvider.BuildQuery(Expression query, SqlNodeAnnotations annotations)
- 在 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 在 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
- 在 System.Linq.Queryable.Count[TSource](IQueryable`1 source)
- 在 FineUIPro.Web.common.mainProject.getPersonWorkTime() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 198
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 53
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 16:58:38
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/05/2025 16:58:38
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInvocation(InvocationExpression invoke)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitWhere(Expression sequence, LambdaExpression predicate)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSelect(Expression sequence, LambdaExpression selector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitAggregate(Expression sequence, LambdaExpression lambda, SqlNodeType aggType, Type returnType)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.ConvertOuter(Expression node)
- 在 System.Data.Linq.SqlClient.SqlProvider.BuildQuery(Expression query, SqlNodeAnnotations annotations)
- 在 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 在 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
- 在 System.Linq.Queryable.Count[TSource](IQueryable`1 source)
- 在 FineUIPro.Web.common.mainProject.getPersonWorkTime() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 198
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 53
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 17:02:14
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/05/2025 17:02:14
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.indexProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\indexProject.aspx.cs:行号 369
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 18:18:07
-出错文件:http://localhost:4528/indexProject.aspx?projectId=0023d936-b97e-484c-9877-2b843514e919
-IP地址:::1
-
-出错时间:04/05/2025 18:18:07
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.indexProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\indexProject.aspx.cs:行号 369
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 18:18:16
-出错文件:http://localhost:4528/indexProject.aspx?projectId=0023d936-b97e-484c-9877-2b843514e919
-IP地址:::1
-
-出错时间:04/05/2025 18:18:16
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.indexProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\indexProject.aspx.cs:行号 369
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 18:18:36
-出错文件:http://localhost:4528/indexProject.aspx
-IP地址:::1
-
-出错时间:04/05/2025 18:18:36
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.indexProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\indexProject.aspx.cs:行号 369
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 19:05:32
-出错文件:http://localhost:4528/indexProject.aspx
-IP地址:::1
-
-出错时间:04/05/2025 19:05:32
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.BindGrid()
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.TextBox_TextChanged(Object sender, EventArgs e)
- 在 FineUIPro.DropDownList.OnSelectedIndexChanged(EventArgs e)
- 在 (DropDownList , EventArgs )
- 在 FineUIPro.DropDownList.RaisePostDataChangedEvent()
- 在 System.Web.UI.Page.RaiseChangedEvents()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 19:57:21
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/05/2025 19:57:21
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.BindGrid()
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.TextBox_TextChanged(Object sender, EventArgs e)
- 在 FineUIPro.DropDownList.OnSelectedIndexChanged(EventArgs e)
- 在 (DropDownList , EventArgs )
- 在 FineUIPro.DropDownList.RaisePostDataChangedEvent()
- 在 System.Web.UI.Page.RaiseChangedEvents()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 19:57:33
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/05/2025 19:57:33
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.BindGrid()
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.TextBox_TextChanged(Object sender, EventArgs e)
- 在 FineUIPro.DropDownList.OnSelectedIndexChanged(EventArgs e)
- 在 (DropDownList , EventArgs )
- 在 FineUIPro.DropDownList.RaisePostDataChangedEvent()
- 在 System.Web.UI.Page.RaiseChangedEvents()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 19:58:24
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/05/2025 19:58:24
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.BindGrid()
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.TextBox_TextChanged(Object sender, EventArgs e)
- 在 FineUIPro.DropDownList.OnSelectedIndexChanged(EventArgs e)
- 在 (DropDownList , EventArgs )
- 在 FineUIPro.DropDownList.RaisePostDataChangedEvent()
- 在 System.Web.UI.Page.RaiseChangedEvents()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 19:59:10
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/05/2025 19:59:10
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.BindGrid()
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.TextBox_TextChanged(Object sender, EventArgs e)
- 在 FineUIPro.DropDownList.OnSelectedIndexChanged(EventArgs e)
- 在 (DropDownList , EventArgs )
- 在 FineUIPro.DropDownList.RaisePostDataChangedEvent()
- 在 System.Web.UI.Page.RaiseChangedEvents()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 20:00:46
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/05/2025 20:00:47
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.BindGrid()
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.TextBox_TextChanged(Object sender, EventArgs e)
- 在 FineUIPro.DropDownList.OnSelectedIndexChanged(EventArgs e)
- 在 (DropDownList , EventArgs )
- 在 FineUIPro.DropDownList.RaisePostDataChangedEvent()
- 在 System.Web.UI.Page.RaiseChangedEvents()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 20:01:24
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/05/2025 20:01:24
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.BindGrid()
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.TextBox_TextChanged(Object sender, EventArgs e)
- 在 FineUIPro.DropDownList.OnSelectedIndexChanged(EventArgs e)
- 在 (DropDownList , EventArgs )
- 在 FineUIPro.DropDownList.RaisePostDataChangedEvent()
- 在 System.Web.UI.Page.RaiseChangedEvents()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 20:02:34
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/05/2025 20:02:34
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.indexProject.Page_Load(Object sender, EventArgs e)
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 20:02:56
-出错文件:http://localhost:4528/indexProject.aspx?projectId=0023d936-b97e-484c-9877-2b843514e919
-IP地址:::1
-
-出错时间:04/05/2025 20:02:56
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.BindGrid()
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.TextBox_TextChanged(Object sender, EventArgs e)
- 在 FineUIPro.DropDownList.OnSelectedIndexChanged(EventArgs e)
- 在 (DropDownList , EventArgs )
- 在 FineUIPro.DropDownList.RaisePostDataChangedEvent()
- 在 System.Web.UI.Page.RaiseChangedEvents()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 20:08:13
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/05/2025 20:08:13
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.BindGrid()
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.TextBox_TextChanged(Object sender, EventArgs e)
- 在 FineUIPro.DropDownList.OnSelectedIndexChanged(EventArgs e)
- 在 (DropDownList , EventArgs )
- 在 FineUIPro.DropDownList.RaisePostDataChangedEvent()
- 在 System.Web.UI.Page.RaiseChangedEvents()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 20:09:22
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/05/2025 20:09:22
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.BindGrid()
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.TextBox_TextChanged(Object sender, EventArgs e)
- 在 FineUIPro.DropDownList.OnSelectedIndexChanged(EventArgs e)
- 在 (DropDownList , EventArgs )
- 在 FineUIPro.DropDownList.RaisePostDataChangedEvent()
- 在 System.Web.UI.Page.RaiseChangedEvents()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 20:10:42
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/05/2025 20:10:42
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.BindGrid()
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.TextBox_TextChanged(Object sender, EventArgs e)
- 在 FineUIPro.DropDownList.OnSelectedIndexChanged(EventArgs e)
- 在 (DropDownList , EventArgs )
- 在 FineUIPro.DropDownList.RaisePostDataChangedEvent()
- 在 System.Web.UI.Page.RaiseChangedEvents()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 20:11:49
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/05/2025 20:11:49
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.BindGrid()
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.TextBox_TextChanged(Object sender, EventArgs e)
- 在 FineUIPro.DropDownList.OnSelectedIndexChanged(EventArgs e)
- 在 (DropDownList , EventArgs )
- 在 FineUIPro.DropDownList.RaisePostDataChangedEvent()
- 在 System.Web.UI.Page.RaiseChangedEvents()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 20:13:17
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/05/2025 20:13:17
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.SetUnitProject() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 217
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 65
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 20:30:21
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-
-出错时间:04/05/2025 20:30:21
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (ITemplate , Control )
- 在 FineUIPro.GridRow.InitTemplateContainers()
- 在 (GridRow )
- 在 FineUIPro.Grid.BkpgFeAELTFlAvoTrOBrConfcLJbA(Int32 , Object )
- 在 (Grid , Int32 , Object )
- 在 FineUIPro.Grid.LDChsdiaqdhUTcxBcQPMKyQFfjEDB(DataTable , Boolean )
- 在 (Grid , DataTable , Boolean )
- 在 FineUIPro.Grid.DataBind(Boolean keepCurrentData)
- 在 (Grid , Boolean )
- 在 FineUIPro.Grid.DataBind()
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.BindGrid() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 131
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 69
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 20:48:08
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/05/2025 20:48:08
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (ITemplate , Control )
- 在 FineUIPro.GridRow.InitTemplateContainers()
- 在 (GridRow )
- 在 FineUIPro.Grid.BkpgFeAELTFlAvoTrOBrConfcLJbA(Int32 , Object )
- 在 (Grid , Int32 , Object )
- 在 FineUIPro.Grid.LDChsdiaqdhUTcxBcQPMKyQFfjEDB(DataTable , Boolean )
- 在 (Grid , DataTable , Boolean )
- 在 FineUIPro.Grid.DataBind(Boolean keepCurrentData)
- 在 (Grid , Boolean )
- 在 FineUIPro.Grid.DataBind()
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.BindGrid() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 131
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 69
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 20:49:12
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/05/2025 20:49:12
-
-
-错误信息开始=====>
-错误类型:HttpParseException
-错误信息:无法从其“HeaderTextAlign”属性的字符串表示形式“Top”创建“FineUIPro.TextAlign”类型的对象。
-错误堆栈:
- 在 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
-----错误信息:
-----无法从其“HeaderTextAlign”属性的字符串表示形式“Top”创建“FineUIPro.TextAlign”类型的对象。
-----错误堆栈:
- 在 System.Web.UI.PropertyConverter.ObjectFromString(Type objType, MemberInfo propertyInfo, String value)
- 在 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)
-出错时间:04/05/2025 21:22:57
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-
-出错时间:04/05/2025 21:22:57
-
-
-错误信息开始=====>
-错误类型:HttpParseException
-错误信息:无法从其“HeaderTextAlign”属性的字符串表示形式“Top”创建“FineUIPro.TextAlign”类型的对象。
-错误堆栈:
- 在 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
-----错误信息:
-----无法从其“HeaderTextAlign”属性的字符串表示形式“Top”创建“FineUIPro.TextAlign”类型的对象。
-----错误堆栈:
- 在 System.Web.UI.PropertyConverter.ObjectFromString(Type objType, MemberInfo propertyInfo, String value)
- 在 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)
-出错时间:04/05/2025 21:26:18
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-
-出错时间:04/05/2025 21:26:18
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.indexProject.Page_Load(Object sender, EventArgs e)
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 21:59:32
-出错文件:http://localhost:4528/indexProject.aspx?projectId=0023d936-b97e-484c-9877-2b843514e919
-IP地址:::1
-
-出错时间:04/05/2025 21:59:32
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.BindGrid()
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.TextBox_TextChanged(Object sender, EventArgs e)
- 在 FineUIPro.DropDownList.OnSelectedIndexChanged(EventArgs e)
- 在 (DropDownList , EventArgs )
- 在 FineUIPro.DropDownList.RaisePostDataChangedEvent()
- 在 System.Web.UI.Page.RaiseChangedEvents()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 22:08:42
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/05/2025 22:08:42
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.BindGrid()
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.TextBox_TextChanged(Object sender, EventArgs e)
- 在 FineUIPro.DropDownList.OnSelectedIndexChanged(EventArgs e)
- 在 (DropDownList , EventArgs )
- 在 FineUIPro.DropDownList.RaisePostDataChangedEvent()
- 在 System.Web.UI.Page.RaiseChangedEvents()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 22:10:19
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/05/2025 22:10:20
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.BindGrid()
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.TextBox_TextChanged(Object sender, EventArgs e)
- 在 FineUIPro.DropDownList.OnSelectedIndexChanged(EventArgs e)
- 在 (DropDownList , EventArgs )
- 在 FineUIPro.DropDownList.RaisePostDataChangedEvent()
- 在 System.Web.UI.Page.RaiseChangedEvents()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 22:11:03
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/05/2025 22:11:03
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.SetUnitProject() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 217
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 65
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 22:13:01
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-
-出错时间:04/05/2025 22:13:01
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.BindGrid()
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.TextBox_TextChanged(Object sender, EventArgs e)
- 在 FineUIPro.DropDownList.OnSelectedIndexChanged(EventArgs e)
- 在 (DropDownList , EventArgs )
- 在 FineUIPro.DropDownList.RaisePostDataChangedEvent()
- 在 System.Web.UI.Page.RaiseChangedEvents()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 22:14:20
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/05/2025 22:14:20
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.BindGrid()
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.TextBox_TextChanged(Object sender, EventArgs e)
- 在 FineUIPro.DropDownList.OnSelectedIndexChanged(EventArgs e)
- 在 (DropDownList , EventArgs )
- 在 FineUIPro.DropDownList.RaisePostDataChangedEvent()
- 在 System.Web.UI.Page.RaiseChangedEvents()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 22:16:34
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/05/2025 22:16:34
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.BindGrid()
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.TextBox_TextChanged(Object sender, EventArgs e)
- 在 FineUIPro.DropDownList.OnSelectedIndexChanged(EventArgs e)
- 在 (DropDownList , EventArgs )
- 在 FineUIPro.DropDownList.RaisePostDataChangedEvent()
- 在 System.Web.UI.Page.RaiseChangedEvents()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 22:18:37
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/05/2025 22:18:37
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.SetUnitProject() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 217
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 65
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 22:23:31
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-
-出错时间:04/05/2025 22:23:31
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.BindGrid()
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.TextBox_TextChanged(Object sender, EventArgs e)
- 在 FineUIPro.DropDownList.OnSelectedIndexChanged(EventArgs e)
- 在 (DropDownList , EventArgs )
- 在 FineUIPro.DropDownList.RaisePostDataChangedEvent()
- 在 System.Web.UI.Page.RaiseChangedEvents()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 22:28:28
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/05/2025 22:28:28
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.indexProject.Page_Load(Object sender, EventArgs e)
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 22:29:16
-出错文件:http://localhost:4528/indexProject.aspx?projectId=fe0f4acf-c173-4ee9-bed2-4fa05a700a96
-IP地址:::1
-
-出错时间:04/05/2025 22:29:16
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.BindGrid()
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.TextBox_TextChanged(Object sender, EventArgs e)
- 在 FineUIPro.DropDownList.OnSelectedIndexChanged(EventArgs e)
- 在 (DropDownList , EventArgs )
- 在 FineUIPro.DropDownList.RaisePostDataChangedEvent()
- 在 System.Web.UI.Page.RaiseChangedEvents()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/05/2025 22:30:29
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/05/2025 22:30:29
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.BindGrid()
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.btnOut_Click(Object sender, EventArgs e)
- 在 FineUIPro.Button.OnClick(EventArgs e)
- 在 (Button , EventArgs )
- 在 FineUIPro.Button.RaisePostBackEvent(String eventArgument)
- 在 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
- 在 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 08:52:36
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 08:52:36
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 654
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 42
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 08:57:46
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 08:57:46
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 620
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 42
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 10:29:24
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 10:29:24
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:关键字 'CASE' 附近有语法错误。
-错误堆栈:
- 在 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
- 在 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
- 在 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
- 在 System.Data.SqlClient.SqlDataReader.get_MetaData()
- 在 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
- 在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable)
- 在 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\BLL\SQLHelper.cs:行号 311
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.BindGrid() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 72
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 51
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 10:30:45
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/06/2025 10:30:45
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:关键字 'CASE' 附近有语法错误。
-错误堆栈:
- 在 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
- 在 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
- 在 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
- 在 System.Data.SqlClient.SqlDataReader.get_MetaData()
- 在 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
- 在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable)
- 在 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\BLL\SQLHelper.cs:行号 311
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.BindGrid() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 72
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 51
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 10:32:50
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/06/2025 10:32:50
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:关键字 'CASE' 附近有语法错误。
-错误堆栈:
- 在 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
- 在 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
- 在 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
- 在 System.Data.SqlClient.SqlDataReader.get_MetaData()
- 在 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
- 在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable)
- 在 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\BLL\SQLHelper.cs:行号 311
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.BindGrid()
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e)
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 10:46:09
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/06/2025 10:46:09
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:“InspectType”附近有语法错误。
-错误堆栈:
- 在 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
- 在 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
- 在 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
- 在 System.Data.SqlClient.SqlDataReader.get_MetaData()
- 在 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
- 在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable)
- 在 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\BLL\SQLHelper.cs:行号 311
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.BindGrid()
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e)
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 10:48:05
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/06/2025 10:48:05
-
-
-错误信息开始=====>
-错误类型:IndexOutOfRangeException
-错误信息:无法找到列 CheckTime。
-错误堆栈:
- 在 System.Data.DataTable.ParseSortString(String sortString)
- 在 System.Data.DataView.CheckSort(String sort)
- 在 System.Data.DataView.set_Sort(String value)
- 在 FineUIPro.Web.PageBase.GetPagedDataTable(Grid Grid1, DataTable tb)
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.BindGrid()
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e)
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 10:48:26
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/06/2025 10:48:26
-
-
-错误信息开始=====>
-错误类型:IndexOutOfRangeException
-错误信息:无法找到列 CheckTime。
-错误堆栈:
- 在 System.Data.DataTable.ParseSortString(String sortString)
- 在 System.Data.DataView.CheckSort(String sort)
- 在 System.Data.DataView.set_Sort(String value)
- 在 FineUIPro.Web.PageBase.GetPagedDataTable(Grid Grid1, DataTable tb)
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.BindGrid()
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e)
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 10:50:08
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/06/2025 10:50:09
-
-
-错误信息开始=====>
-错误类型:IndexOutOfRangeException
-错误信息:无法找到列 CheckTime。
-错误堆栈:
- 在 System.Data.DataTable.ParseSortString(String sortString)
- 在 System.Data.DataView.CheckSort(String sort)
- 在 System.Data.DataView.set_Sort(String value)
- 在 FineUIPro.Web.PageBase.GetPagedDataTable(Grid Grid1, DataTable tb)
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.BindGrid()
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e)
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 10:57:01
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/06/2025 10:57:01
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx(14): error CS1061: “ASP.hsse_check_checkspecialrecord_aspx”不包含“Grid1_Sort”的定义,并且找不到可接受类型为“ASP.hsse_check_checkspecialrecord_aspx”的第一个参数的扩展方法“Grid1_Sort”(是否缺少 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)
-出错时间:04/06/2025 14:12:05
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 14:12:05
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx(14): error CS1061: “ASP.hsse_check_checkspecialrecord_aspx”不包含“Grid1_Sort”的定义,并且找不到可接受类型为“ASP.hsse_check_checkspecialrecord_aspx”的第一个参数的扩展方法“Grid1_Sort”(是否缺少 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)
-出错时间:04/06/2025 14:13:30
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 14:13:30
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx(14): error CS1061: “ASP.hsse_check_checkspecialrecord_aspx”不包含“Grid1_Sort”的定义,并且找不到可接受类型为“ASP.hsse_check_checkspecialrecord_aspx”的第一个参数的扩展方法“Grid1_Sort”(是否缺少 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)
-出错时间:04/06/2025 14:15:38
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 14:15:38
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx(14): error CS1061: “ASP.hsse_check_checkspecialrecord_aspx”不包含“Grid1_PageIndexChange”的定义,并且找不到可接受类型为“ASP.hsse_check_checkspecialrecord_aspx”的第一个参数的扩展方法“Grid1_PageIndexChange”(是否缺少 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)
-出错时间:04/06/2025 14:16:43
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 14:16:43
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx(14): error CS1061: “ASP.hsse_check_checkspecialrecord_aspx”不包含“Grid1_PageIndexChange”的定义,并且找不到可接受类型为“ASP.hsse_check_checkspecialrecord_aspx”的第一个参数的扩展方法“Grid1_PageIndexChange”(是否缺少 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)
-出错时间:04/06/2025 14:18:13
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 14:18:13
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx(87): error CS1061: “ASP.hsse_check_checkspecialrecord_aspx”不包含“ddlPageSize_SelectedIndexChanged”的定义,并且找不到可接受类型为“ASP.hsse_check_checkspecialrecord_aspx”的第一个参数的扩展方法“ddlPageSize_SelectedIndexChanged”(是否缺少 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)
-出错时间:04/06/2025 14:22:00
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 14:22:01
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx(14): error CS1061: “ASP.hsse_check_checkspecialrecord_aspx”不包含“Grid1_RowCommand”的定义,并且找不到可接受类型为“ASP.hsse_check_checkspecialrecord_aspx”的第一个参数的扩展方法“Grid1_RowCommand”(是否缺少 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)
-出错时间:04/06/2025 14:22:41
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 14:22:41
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx(14): error CS1061: “ASP.hsse_check_checkspecialrecord_aspx”不包含“Grid1_RowCommand”的定义,并且找不到可接受类型为“ASP.hsse_check_checkspecialrecord_aspx”的第一个参数的扩展方法“Grid1_RowCommand”(是否缺少 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)
-出错时间:04/06/2025 14:24:23
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 14:24:23
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx(14): error CS1061: “ASP.hsse_check_checkspecialrecord_aspx”不包含“Grid1_RowCommand”的定义,并且找不到可接受类型为“ASP.hsse_check_checkspecialrecord_aspx”的第一个参数的扩展方法“Grid1_RowCommand”(是否缺少 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)
-出错时间:04/06/2025 14:26:47
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 14:26:48
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx(14): error CS1061: “ASP.hsse_check_checkspecialrecord_aspx”不包含“Grid1_RowDoubleClick”的定义,并且找不到可接受类型为“ASP.hsse_check_checkspecialrecord_aspx”的第一个参数的扩展方法“Grid1_RowDoubleClick”(是否缺少 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)
-出错时间:04/06/2025 14:27:35
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 14:27:35
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx(14): error CS1061: “ASP.hsse_check_checkspecialrecord_aspx”不包含“Grid1_RowDoubleClick”的定义,并且找不到可接受类型为“ASP.hsse_check_checkspecialrecord_aspx”的第一个参数的扩展方法“Grid1_RowDoubleClick”(是否缺少 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)
-出错时间:04/06/2025 14:28:31
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 14:28:31
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.BindGrid() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 54
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 43
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 14:30:05
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 14:30:05
-
-
-错误信息开始=====>
-错误类型:HttpException
-错误信息:DataBinding:“System.Data.DataRowView”不包含名为“HazardRegisterId”的属性。
-错误堆栈:
- 在 System.Web.UI.DataBinder.GetPropertyValue(Object container, String propName)
- 在 System.Web.UI.DataBinder.Eval(Object container, String[] expressionParts)
- 在 System.Web.UI.DataBinder.Eval(Object container, String expression)
- 在 System.Web.UI.TemplateControl.Eval(String expression)
- 在 ASP.hsse_check_checkspecialrecord_aspx.__DataBindinglbImageUrl1(Object sender, EventArgs e) 位置 e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx:行号 54
- 在 System.Web.UI.Control.OnDataBinding(EventArgs e)
- 在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
- 在 System.Web.UI.Control.DataBind()
- 在 System.Web.UI.Control.DataBindChildren()
- 在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
- 在 System.Web.UI.Control.DataBind()
- 在 (Control )
- 在 FineUIPro.GridRow.BkpgFeAELTFlAvoTrOBrConfcLJbA()
- 在 (GridRow )
- 在 FineUIPro.Grid.BkpgFeAELTFlAvoTrOBrConfcLJbA(Int32 , Object )
- 在 (Grid , Int32 , Object )
- 在 FineUIPro.Grid.LDChsdiaqdhUTcxBcQPMKyQFfjEDB(DataTable , Boolean )
- 在 (Grid , DataTable , Boolean )
- 在 FineUIPro.Grid.DataBind(Boolean keepCurrentData)
- 在 (Grid , Boolean )
- 在 FineUIPro.Grid.DataBind()
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.BindGrid() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 63
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 43
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 14:30:43
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/06/2025 14:30:43
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.BindGrid() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 54
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 43
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 14:32:18
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 14:32:18
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx(23): error CS1061: “ASP.hsse_check_checkspecialrecord_aspx”不包含“TextBox_TextChanged”的定义,并且找不到可接受类型为“ASP.hsse_check_checkspecialrecord_aspx”的第一个参数的扩展方法“TextBox_TextChanged”(是否缺少 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)
-出错时间:04/06/2025 14:34:39
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 14:34:39
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx(23): error CS1061: “ASP.hsse_check_checkspecialrecord_aspx”不包含“TextBox_TextChanged”的定义,并且找不到可接受类型为“ASP.hsse_check_checkspecialrecord_aspx”的第一个参数的扩展方法“TextBox_TextChanged”(是否缺少 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)
-出错时间:04/06/2025 14:36:45
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 14:36:45
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.BindGrid() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 54
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 43
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 14:37:27
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 14:37:27
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.SetUnitProject() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 222
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 65
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 14:41:12
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-
-出错时间:04/06/2025 14:41:13
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.BindGrid()
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e)
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 14:44:11
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 14:44:11
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx(127): error CS1061: “ASP.hsse_check_checkspecialrecord_aspx”不包含“Window1_Close”的定义,并且找不到可接受类型为“ASP.hsse_check_checkspecialrecord_aspx”的第一个参数的扩展方法“Window1_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)
-出错时间:04/06/2025 14:44:57
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 14:44:57
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx(127): error CS1061: “ASP.hsse_check_checkspecialrecord_aspx”不包含“Window1_Close”的定义,并且找不到可接受类型为“ASP.hsse_check_checkspecialrecord_aspx”的第一个参数的扩展方法“Window1_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)
-出错时间:04/06/2025 14:45:49
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 14:45:49
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx(135): error CS1061: “ASP.hsse_check_checkspecialrecord_aspx”不包含“Window3_Close”的定义,并且找不到可接受类型为“ASP.hsse_check_checkspecialrecord_aspx”的第一个参数的扩展方法“Window3_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)
-出错时间:04/06/2025 14:46:22
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 14:46:22
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx(146): error CS1061: “ASP.hsse_check_checkspecialrecord_aspx”不包含“btnMenuDelete_Click”的定义,并且找不到可接受类型为“ASP.hsse_check_checkspecialrecord_aspx”的第一个参数的扩展方法“btnMenuDelete_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)
-出错时间:04/06/2025 14:47:25
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 14:47:25
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.BindGrid() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 54
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 43
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 14:50:07
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 14:50:07
-
-
-错误信息开始=====>
-错误类型:IndexOutOfRangeException
-错误信息:无法找到列 RectificationTime。
-错误堆栈:
- 在 System.Data.DataTable.ParseSortString(String sortString)
- 在 System.Data.DataView.CheckSort(String sort)
- 在 System.Data.DataView.set_Sort(String value)
- 在 FineUIPro.Web.PageBase.GetPagedDataTable(Grid Grid1, DataTable tb) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\PageBase.cs:行号 576
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.BindGrid() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 60
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 43
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 14:50:46
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/06/2025 14:50:47
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 619
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 42
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 14:58:28
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 14:58:28
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 619
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 42
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 15:00:45
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 15:00:45
-
-
-错误信息开始=====>
-错误类型:IndexOutOfRangeException
-错误信息:无法找到列 CheckTime。
-错误堆栈:
- 在 System.Data.DataTable.ParseSortString(String sortString)
- 在 System.Data.DataView.CheckSort(String sort)
- 在 System.Data.DataView.set_Sort(String value)
- 在 FineUIPro.Web.PageBase.GetPagedDataTable(Grid Grid1, DataTable tb) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\PageBase.cs:行号 576
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.BindGrid() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 74
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 51
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 15:01:51
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/06/2025 15:01:51
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 619
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 42
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 15:02:14
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 15:02:14
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 619
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 42
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 15:12:34
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 15:12:34
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 619
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 42
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 15:18:58
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 15:18:58
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 619
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 42
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 15:21:52
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 15:21:52
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.ProjectData.ProjectUnit.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\ProjectData\ProjectUnit.aspx.cs:行号 31
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 15:25:16
-出错文件:http://localhost:4528/ProjectData/ProjectUnit.aspx
-IP地址:::1
-
-出错时间:04/06/2025 15:25:16
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 619
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 42
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 15:27:12
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 15:27:12
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 619
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 42
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 15:33:46
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 15:33:46
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 619
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 42
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 15:36:52
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 15:36:52
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.ProjectData.ProjectUser.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\ProjectData\ProjectUser.aspx.cs:行号 31
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 15:40:16
-出错文件:http://localhost:4528/ProjectData/ProjectUser.aspx
-IP地址:::1
-
-出错时间:04/06/2025 15:40:16
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 619
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 42
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 15:44:23
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 15:44:23
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 619
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 42
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 15:48:21
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 15:48:21
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 621
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 42
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 15:56:43
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 15:56:43
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 621
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 42
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 15:59:33
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 15:59:34
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 621
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 42
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 16:01:05
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 16:01:05
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 621
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 42
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 16:02:45
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 16:02:45
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 621
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 42
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 16:08:28
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 16:08:28
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 621
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 42
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 16:12:02
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 16:12:02
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 621
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 42
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 16:15:30
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 16:15:30
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.indexProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\indexProject.aspx.cs:行号 369
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 16:24:32
-出错文件:http://localhost:4528/indexProject.aspx?projectId=0023d936-b97e-484c-9877-2b843514e919
-IP地址:::1
-
-出错时间:04/06/2025 16:24:32
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 622
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 43
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 16:24:40
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:127.0.0.1
-
-出错时间:04/06/2025 16:24:40
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 622
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 43
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 16:29:36
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 16:29:36
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 622
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 43
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 16:32:05
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 16:32:05
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 622
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 43
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 16:36:31
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 16:36:32
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 622
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 43
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 16:38:55
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 16:38:55
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx(79): error CS1502: 与“FineUIPro.Web.HSSE.Check.CheckSpecialRecord.ConvertImageUrlByImage(string)”最匹配的重载方法具有一些无效参数
-错误堆栈:
- 在 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)
-出错时间:04/06/2025 16:50:06
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 16:50:06
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx(79): error CS1502: 与“FineUIPro.Web.HSSE.Check.CheckSpecialRecord.ConvertImageUrlByImage(string)”最匹配的重载方法具有一些无效参数
-错误堆栈:
- 在 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)
-出错时间:04/06/2025 16:50:29
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 16:50:29
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 622
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 43
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 16:52:27
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 16:52:27
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 560
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 43
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 16:58:18
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 16:58:19
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 561
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 43
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 17:04:00
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 17:04:00
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 561
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 43
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 17:07:44
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 17:07:44
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 617
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 44
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 17:20:18
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 17:20:18
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 617
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 44
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 17:39:06
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 17:39:06
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 617
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 44
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 18:01:23
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 18:01:23
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 617
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 44
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 18:06:08
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 18:06:08
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 561
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 43
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 18:08:17
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 18:08:17
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 561
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 43
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 18:43:33
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 18:43:33
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 561
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 43
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 19:00:00
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 19:00:01
-
-
-错误信息开始=====>
-错误类型:HttpParseException
-错误信息:类型“FineUIPro.Panel”不具有名为“BoxConfigLastChildMargin”的公共属性。
-错误堆栈:
- 在 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
-----错误信息:
-----类型“FineUIPro.Panel”不具有名为“BoxConfigLastChildMargin”的公共属性。
-----错误堆栈:
- 在 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)
-出错时间:04/06/2025 19:12:56
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialView.aspx?InspectionItemId=a1cfda95-2e70-432d-bed7-395a7790ebe2
-IP地址:::1
-
-出错时间:04/06/2025 19:12:56
-
-
-错误信息开始=====>
-错误类型:HttpParseException
-错误信息:类型“FineUIPro.Panel”不具有名为“BoxConfigLastChildMargin”的公共属性。
-错误堆栈:
- 在 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
-----错误信息:
-----类型“FineUIPro.Panel”不具有名为“BoxConfigLastChildMargin”的公共属性。
-----错误堆栈:
- 在 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)
-出错时间:04/06/2025 19:14:14
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialView.aspx?InspectionItemId=c12e2c6f-0eeb-4b15-b845-8eba88da1689
-IP地址:::1
-
-出错时间:04/06/2025 19:14:15
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialView.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialView.aspx.cs:行号 66
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 19:22:58
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialView.aspx
-IP地址:::1
-
-出错时间:04/06/2025 19:22:58
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 558
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 43
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 19:25:22
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 19:25:22
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialView.Page_Load(Object sender, EventArgs e)
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 19:27:57
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialView.aspx?InspectionItemId=a1cfda95-2e70-432d-bed7-395a7790ebe2
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/06/2025 19:27:57
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialView.Page_Load(Object sender, EventArgs e)
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 19:28:59
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialView.aspx?InspectionItemId=a1cfda95-2e70-432d-bed7-395a7790ebe2
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/06/2025 19:28:59
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialView.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialView.aspx.cs:行号 66
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 19:30:54
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialView.aspx
-IP地址:127.0.0.1
-
-出错时间:04/06/2025 19:30:55
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.indexProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\indexProject.aspx.cs:行号 369
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 19:30:56
-出错文件:http://localhost:4528/indexProject.aspx?projectId=0023d936-b97e-484c-9877-2b843514e919
-IP地址:127.0.0.1
-
-出错时间:04/06/2025 19:30:57
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialView.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialView.aspx.cs:行号 67
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 19:41:36
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialView.aspx
-IP地址:::1
-
-出错时间:04/06/2025 19:41:36
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialView.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialView.aspx.cs:行号 68
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 19:46:37
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialView.aspx
-IP地址:::1
-
-出错时间:04/06/2025 19:46:37
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialView.Page_Load(Object sender, EventArgs e)
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 19:51:19
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialView.aspx?InspectionItemId=a1cfda95-2e70-432d-bed7-395a7790ebe2
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/06/2025 19:51:19
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialView.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialView.aspx.cs:行号 69
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 19:51:53
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialView.aspx
-IP地址:::1
-
-出错时间:04/06/2025 19:51:53
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 520
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 43
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 20:10:41
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 20:10:41
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.BindGrid()
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e)
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 20:15:41
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/06/2025 20:15:41
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.SetUnitProject() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 222
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 65
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 20:21:59
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-
-出错时间:04/06/2025 20:21:59
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.mainMenu_HSSE.get_Two()
- 在 ASP.common_mainmenu_hsse_aspx.__Render__control1(HtmlTextWriter __w, Control parameterContainer) 位置 e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainMenu_HSSE.aspx:行号 479
- 在 System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children)
- 在 System.Web.UI.Control.RenderChildren(HtmlTextWriter writer)
- 在 System.Web.UI.Page.Render(HtmlTextWriter writer)
- 在 System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter)
- 在 System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter)
- 在 System.Web.UI.Control.RenderControl(HtmlTextWriter writer)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 20:49:06
-出错文件:http://localhost:4528/common/mainMenu_HSSE.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/06/2025 20:49:06
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.mainMenu_HSSE.get_Two()
- 在 ASP.common_mainmenu_hsse_aspx.__Render__control1(HtmlTextWriter __w, Control parameterContainer) 位置 e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainMenu_HSSE.aspx:行号 479
- 在 System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children)
- 在 System.Web.UI.Control.RenderChildren(HtmlTextWriter writer)
- 在 System.Web.UI.Page.Render(HtmlTextWriter writer)
- 在 System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter)
- 在 System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter)
- 在 System.Web.UI.Control.RenderControl(HtmlTextWriter writer)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 20:51:04
-出错文件:http://localhost:4528/common/mainMenu_HSSE.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/06/2025 20:51:04
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:“b”附近有语法错误。
-错误堆栈:
- 在 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
- 在 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
- 在 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
- 在 System.Data.SqlClient.SqlDataReader.get_MetaData()
- 在 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
- 在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable)
- 在 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\BLL\SQLHelper.cs:行号 311
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.BindGrid()
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e)
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 21:14:07
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/06/2025 21:14:07
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:“b”附近有语法错误。
-错误堆栈:
- 在 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
- 在 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
- 在 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
- 在 System.Data.SqlClient.SqlDataReader.get_MetaData()
- 在 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
- 在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable)
- 在 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\BLL\SQLHelper.cs:行号 311
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.BindGrid()
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e)
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 21:14:24
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/06/2025 21:14:24
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:“b”附近有语法错误。
-错误堆栈:
- 在 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
- 在 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
- 在 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
- 在 System.Data.SqlClient.SqlDataReader.get_MetaData()
- 在 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
- 在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable)
- 在 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\BLL\SQLHelper.cs:行号 311
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.BindGrid()
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e)
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 21:15:05
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/06/2025 21:15:05
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Meeting\ClassMeeting.aspx.cs:行号 40
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 21:20:21
-出错文件:http://localhost:4528/HSSE/Meeting/ClassMeeting.aspx
-IP地址:::1
-
-出错时间:04/06/2025 21:20:21
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Meeting\ClassMeeting.aspx.cs:行号 40
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 21:26:56
-出错文件:http://localhost:4528/HSSE/Meeting/ClassMeeting.aspx
-IP地址:::1
-
-出错时间:04/06/2025 21:26:56
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 615
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 43
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 21:28:44
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 21:28:44
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 615
- 在 FineUIPro.Web.HSSE.Check.CheckSpecialRecord.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Check\CheckSpecialRecord.aspx.cs:行号 43
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 21:30:42
-出错文件:http://localhost:4528/HSSE/Check/CheckSpecialRecord.aspx
-IP地址:::1
-
-出错时间:04/06/2025 21:30:42
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Meeting\ClassMeeting.aspx.cs:行号 40
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 21:36:14
-出错文件:http://localhost:4528/HSSE/Meeting/ClassMeeting.aspx
-IP地址:::1
-
-出错时间:04/06/2025 21:36:14
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.SetUnitProject() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 222
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 65
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 22:03:03
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-
-出错时间:04/06/2025 22:03:03
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.SetUnitProject() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 222
- 在 FineUIPro.Web.HSSE.HiddenInspection.HiddenRectificationList.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\HiddenInspection\HiddenRectificationList.aspx.cs:行号 65
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/06/2025 22:13:30
-出错文件:http://localhost:4528/HSSE/HiddenInspection/HiddenRectificationList.aspx
-IP地址:::1
-
-出错时间:04/06/2025 22:13:30
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Technique.RectifyEdit.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Technique\RectifyEdit.aspx.cs:行号 135
- 在 FineUIPro.Web.HSSE.Technique.RectifyEdit.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Technique\RectifyEdit.aspx.cs:行号 53
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/08/2025 11:07:44
-出错文件:http://localhost:4528/HSSE/Technique/RectifyEdit.aspx?RectifyId=00101
-IP地址:::1
-
-出错时间:04/08/2025 11:07:44
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Technique.RectifyEdit.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Technique\RectifyEdit.aspx.cs:行号 135
- 在 FineUIPro.Web.HSSE.Technique.RectifyEdit.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Technique\RectifyEdit.aspx.cs:行号 53
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/08/2025 11:07:55
-出错文件:http://localhost:4528/HSSE/Technique/RectifyEdit.aspx?RectifyId=00101
-IP地址:::1
-
-出错时间:04/08/2025 11:07:55
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Technique.RectifyEdit.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Technique\RectifyEdit.aspx.cs:行号 135
- 在 FineUIPro.Web.HSSE.Technique.RectifyEdit.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Technique\RectifyEdit.aspx.cs:行号 53
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/08/2025 11:08:10
-出错文件:http://localhost:4528/HSSE/Technique/RectifyEdit.aspx?RectifyId=00107
-IP地址:::1
-
-出错时间:04/08/2025 11:08:10
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Technique.RectifyItemEdit.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Technique\RectifyItemEdit.aspx.cs:行号 152
- 在 FineUIPro.Web.HSSE.Technique.RectifyItemEdit.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Technique\RectifyItemEdit.aspx.cs:行号 52
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/08/2025 11:08:22
-出错文件:http://localhost:4528/HSSE/Technique/RectifyItemEdit.aspx?RectifyItemId=17FD34CE-CF20-4110-8A48-9D70D0D9E060
-IP地址:::1
-
-出错时间:04/08/2025 11:08:22
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Technique.RectifyItemEdit.GetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Technique\RectifyItemEdit.aspx.cs:行号 152
- 在 FineUIPro.Web.HSSE.Technique.RectifyItemEdit.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Technique\RectifyItemEdit.aspx.cs:行号 52
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/08/2025 11:11:39
-出错文件:http://localhost:4528/HSSE/Technique/RectifyItemEdit.aspx
-IP地址:::1
-
-出错时间:04/08/2025 11:11:40
-
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInvocation(InvocationExpression invoke)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitWhere(Expression sequence, LambdaExpression predicate)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSelect(Expression sequence, LambdaExpression selector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitAggregate(Expression sequence, LambdaExpression lambda, SqlNodeType aggType, Type returnType)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.ConvertOuter(Expression node)
- 在 System.Data.Linq.SqlClient.SqlProvider.BuildQuery(Expression query, SqlNodeAnnotations annotations)
- 在 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 在 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
- 在 System.Linq.Queryable.Count[TSource](IQueryable`1 source)
- 在 FineUIPro.Web.common.mainProject.getPersonWorkTime() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 200
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 54
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/08/2025 15:51:37
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/08/2025 15:51:37
-
-
-错误信息开始=====>
-错误类型:HttpParseException
-错误信息:类型“FineUIPro.Form”不具有名为“Grid”的公共属性。
-错误堆栈:
- 在 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
-----错误信息:
-----类型“FineUIPro.Form”不具有名为“Grid”的公共属性。
-----错误堆栈:
- 在 System.Web.UI.ControlBuilder.GetChildPropertyBuilder(String tagName, IDictionary attribs, Type& childType, TemplateParser templateParser, Boolean defaultProperty)
- 在 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)
-出错时间:04/08/2025 16:07:47
-出错文件:http://localhost:4528/OfficeCheck/Inspect/ProjectQualityInspection.aspx
-IP地址:::1
-
-出错时间:04/08/2025 16:07:47
-
-
-错误信息开始=====>
-错误类型:HttpParseException
-错误信息:类型“FineUIPro.Form”不具有名为“Grid”的公共属性。
-错误堆栈:
- 在 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
-----错误信息:
-----类型“FineUIPro.Form”不具有名为“Grid”的公共属性。
-----错误堆栈:
- 在 System.Web.UI.ControlBuilder.GetChildPropertyBuilder(String tagName, IDictionary attribs, Type& childType, TemplateParser templateParser, Boolean defaultProperty)
- 在 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)
-出错时间:04/08/2025 16:08:26
-出错文件:http://localhost:4528/OfficeCheck/Inspect/ProjectQualityInspection.aspx
-IP地址:::1
-
-出错时间:04/08/2025 16:08:26
-
-
-错误信息开始=====>
-错误类型:HttpParseException
-错误信息:类型“FineUIPro.Form”不具有名为“Grid”的公共属性。
-错误堆栈:
- 在 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
-----错误信息:
-----类型“FineUIPro.Form”不具有名为“Grid”的公共属性。
-----错误堆栈:
- 在 System.Web.UI.ControlBuilder.GetChildPropertyBuilder(String tagName, IDictionary attribs, Type& childType, TemplateParser templateParser, Boolean defaultProperty)
- 在 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)
-出错时间:04/08/2025 16:10:10
-出错文件:http://localhost:4528/OfficeCheck/Inspect/ProjectQualityInspection.aspx
-IP地址:::1
-
-出错时间:04/08/2025 16:10:10
-
-
-错误信息开始=====>
-错误类型:HttpParseException
-错误信息:类型“FineUIPro.Form”不具有名为“Grid”的公共属性。
-错误堆栈:
- 在 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
-----错误信息:
-----类型“FineUIPro.Form”不具有名为“Grid”的公共属性。
-----错误堆栈:
- 在 System.Web.UI.ControlBuilder.GetChildPropertyBuilder(String tagName, IDictionary attribs, Type& childType, TemplateParser templateParser, Boolean defaultProperty)
- 在 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)
-出错时间:04/08/2025 16:15:09
-出错文件:http://localhost:4528/OfficeCheck/Inspect/ProjectQualityInspection.aspx
-IP地址:::1
-
-出错时间:04/08/2025 16:15:09
-
-
-错误信息开始=====>
-错误类型:HttpParseException
-错误信息:类型“FineUIPro.Form”不具有名为“Grid”的公共属性。
-错误堆栈:
- 在 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
-----错误信息:
-----类型“FineUIPro.Form”不具有名为“Grid”的公共属性。
-----错误堆栈:
- 在 System.Web.UI.ControlBuilder.GetChildPropertyBuilder(String tagName, IDictionary attribs, Type& childType, TemplateParser templateParser, Boolean defaultProperty)
- 在 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)
-出错时间:04/08/2025 16:16:05
-出错文件:http://localhost:4528/OfficeCheck/Inspect/ProjectQualityInspection.aspx
-IP地址:::1
-
-出错时间:04/08/2025 16:16:05
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspection.aspx(24): error CS1061: “ASP.officecheck_inspect_projectqualityinspection_aspx”不包含“TextBox_TextChanged”的定义,并且找不到可接受类型为“ASP.officecheck_inspect_projectqualityinspection_aspx”的第一个参数的扩展方法“TextBox_TextChanged”(是否缺少 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)
-出错时间:04/08/2025 16:25:25
-出错文件:http://localhost:4528/OfficeCheck/Inspect/ProjectQualityInspection.aspx
-IP地址:::1
-
-出错时间:04/08/2025 16:25:25
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspection.aspx(24): error CS1061: “ASP.officecheck_inspect_projectqualityinspection_aspx”不包含“TextBox_TextChanged”的定义,并且找不到可接受类型为“ASP.officecheck_inspect_projectqualityinspection_aspx”的第一个参数的扩展方法“TextBox_TextChanged”(是否缺少 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)
-出错时间:04/08/2025 16:36:54
-出错文件:http://localhost:4528/OfficeCheck/Inspect/ProjectQualityInspection.aspx
-IP地址:::1
-
-出错时间:04/08/2025 16:36:54
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspection.aspx(24): error CS1061: “ASP.officecheck_inspect_projectqualityinspection_aspx”不包含“TextBox_TextChanged”的定义,并且找不到可接受类型为“ASP.officecheck_inspect_projectqualityinspection_aspx”的第一个参数的扩展方法“TextBox_TextChanged”(是否缺少 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)
-出错时间:04/08/2025 16:42:27
-出错文件:http://localhost:4528/OfficeCheck/Inspect/ProjectQualityInspection.aspx
-IP地址:::1
-
-出错时间:04/08/2025 16:42:27
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspection.aspx(24): error CS1061: “ASP.officecheck_inspect_projectqualityinspection_aspx”不包含“TextBox_TextChanged”的定义,并且找不到可接受类型为“ASP.officecheck_inspect_projectqualityinspection_aspx”的第一个参数的扩展方法“TextBox_TextChanged”(是否缺少 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)
-出错时间:04/08/2025 16:43:18
-出错文件:http://localhost:4528/OfficeCheck/Inspect/ProjectQualityInspection.aspx
-IP地址:::1
-
-出错时间:04/08/2025 16:43:18
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspection.aspx(13): error CS1061: “ASP.officecheck_inspect_projectqualityinspection_aspx”不包含“Grid1_Sort”的定义,并且找不到可接受类型为“ASP.officecheck_inspect_projectqualityinspection_aspx”的第一个参数的扩展方法“Grid1_Sort”(是否缺少 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)
-出错时间:04/08/2025 16:43:57
-出错文件:http://localhost:4528/OfficeCheck/Inspect/ProjectQualityInspection.aspx
-IP地址:::1
-
-出错时间:04/08/2025 16:43:57
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspection.aspx(13): error CS1061: “ASP.officecheck_inspect_projectqualityinspection_aspx”不包含“Grid1_Sort”的定义,并且找不到可接受类型为“ASP.officecheck_inspect_projectqualityinspection_aspx”的第一个参数的扩展方法“Grid1_Sort”(是否缺少 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)
-出错时间:04/08/2025 16:44:37
-出错文件:http://localhost:4528/OfficeCheck/Inspect/ProjectQualityInspection.aspx
-IP地址:::1
-
-出错时间:04/08/2025 16:44:37
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspection.aspx(13): error CS1061: “ASP.officecheck_inspect_projectqualityinspection_aspx”不包含“Grid1_PageIndexChange”的定义,并且找不到可接受类型为“ASP.officecheck_inspect_projectqualityinspection_aspx”的第一个参数的扩展方法“Grid1_PageIndexChange”(是否缺少 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)
-出错时间:04/08/2025 16:46:47
-出错文件:http://localhost:4528/OfficeCheck/Inspect/ProjectQualityInspection.aspx
-IP地址:::1
-
-出错时间:04/08/2025 16:46:48
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspection.aspx(13): error CS1061: “ASP.officecheck_inspect_projectqualityinspection_aspx”不包含“Grid1_RowCommand”的定义,并且找不到可接受类型为“ASP.officecheck_inspect_projectqualityinspection_aspx”的第一个参数的扩展方法“Grid1_RowCommand”(是否缺少 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)
-出错时间:04/08/2025 16:49:05
-出错文件:http://localhost:4528/OfficeCheck/Inspect/ProjectQualityInspection.aspx
-IP地址:::1
-
-出错时间:04/08/2025 16:49:06
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspection.aspx(13): error CS1061: “ASP.officecheck_inspect_projectqualityinspection_aspx”不包含“Grid1_RowCommand”的定义,并且找不到可接受类型为“ASP.officecheck_inspect_projectqualityinspection_aspx”的第一个参数的扩展方法“Grid1_RowCommand”(是否缺少 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)
-出错时间:04/08/2025 16:49:20
-出错文件:http://localhost:4528/OfficeCheck/Inspect/ProjectQualityInspection.aspx
-IP地址:::1
-
-出错时间:04/08/2025 16:49:20
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspection.aspx(13): error CS1061: “ASP.officecheck_inspect_projectqualityinspection_aspx”不包含“Grid1_RowDoubleClick”的定义,并且找不到可接受类型为“ASP.officecheck_inspect_projectqualityinspection_aspx”的第一个参数的扩展方法“Grid1_RowDoubleClick”(是否缺少 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)
-出错时间:04/08/2025 16:51:41
-出错文件:http://localhost:4528/OfficeCheck/Inspect/ProjectQualityInspection.aspx
-IP地址:::1
-
-出错时间:04/08/2025 16:51:41
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspection.aspx(13): error CS1061: “ASP.officecheck_inspect_projectqualityinspection_aspx”不包含“Grid1_RowDoubleClick”的定义,并且找不到可接受类型为“ASP.officecheck_inspect_projectqualityinspection_aspx”的第一个参数的扩展方法“Grid1_RowDoubleClick”(是否缺少 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)
-出错时间:04/08/2025 16:52:01
-出错文件:http://localhost:4528/OfficeCheck/Inspect/ProjectQualityInspection.aspx
-IP地址:::1
-
-出错时间:04/08/2025 16:52:01
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.OfficeCheck.Inspect.ProjectQualityInspection.SetResponsibleUnit() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspection.aspx.cs:行号 141
- 在 FineUIPro.Web.OfficeCheck.Inspect.ProjectQualityInspection.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspection.aspx.cs:行号 37
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/08/2025 16:53:11
-出错文件:http://localhost:4528/OfficeCheck/Inspect/ProjectQualityInspection.aspx
-IP地址:::1
-
-出错时间:04/08/2025 16:53:11
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.OfficeCheck.Inspect.ProjectQualityInspection.SetResponsibleUnit() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspection.aspx.cs:行号 141
- 在 FineUIPro.Web.OfficeCheck.Inspect.ProjectQualityInspection.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspection.aspx.cs:行号 37
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/08/2025 16:58:10
-出错文件:http://localhost:4528/OfficeCheck/Inspect/ProjectQualityInspection.aspx
-IP地址:::1
-
-出错时间:04/08/2025 16:58:10
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInvocation(InvocationExpression invoke)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitWhere(Expression sequence, LambdaExpression predicate)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSelect(Expression sequence, LambdaExpression selector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitAggregate(Expression sequence, LambdaExpression lambda, SqlNodeType aggType, Type returnType)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.ConvertOuter(Expression node)
- 在 System.Data.Linq.SqlClient.SqlProvider.BuildQuery(Expression query, SqlNodeAnnotations annotations)
- 在 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 在 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
- 在 System.Linq.Queryable.Count[TSource](IQueryable`1 source)
- 在 FineUIPro.Web.common.mainProject.getPersonWorkTime() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 200
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 54
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/08/2025 17:07:25
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/08/2025 17:07:25
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.common.mainProject.getCQMSProblem() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 535
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 60
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/08/2025 17:11:43
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:127.0.0.1
-
-出错时间:04/08/2025 17:11:43
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.common.mainProject.getCQMSProblem() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 535
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 60
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/08/2025 17:11:43
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/08/2025 17:11:43
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.OfficeCheck.Inspect.ProjectQualityInspection.SetResponsibleUnit() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspection.aspx.cs:行号 143
- 在 FineUIPro.Web.OfficeCheck.Inspect.ProjectQualityInspection.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspection.aspx.cs:行号 39
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/08/2025 17:16:10
-出错文件:http://localhost:4528/OfficeCheck/Inspect/ProjectQualityInspection.aspx
-IP地址:::1
-
-出错时间:04/08/2025 17:16:11
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.OfficeCheck.Inspect.ProjectQualityInspectionView.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspectionView.aspx.cs:行号 60
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/08/2025 17:53:20
-出错文件:http://localhost:4528/OfficeCheck/Inspect/ProjectQualityInspectionView.aspx
-IP地址:::1
-
-出错时间:04/08/2025 17:53:21
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.OfficeCheck.Inspect.ProjectQualityInspectionView.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspectionView.aspx.cs:行号 63
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/08/2025 18:20:52
-出错文件:http://localhost:4528/OfficeCheck/Inspect/ProjectQualityInspectionView.aspx
-IP地址:::1
-
-出错时间:04/08/2025 18:20:53
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.OfficeCheck.Inspect.ProjectQualityInspection.SetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspection.aspx.cs:行号 309
- 在 FineUIPro.Web.OfficeCheck.Inspect.ProjectQualityInspection.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspection.aspx.cs:行号 35
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/08/2025 19:17:29
-出错文件:http://localhost:4528/OfficeCheck/Inspect/ProjectQualityInspection.aspx
-IP地址:::1
-
-出错时间:04/08/2025 19:17:29
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.OfficeCheck.Inspect.ProjectQualityInspection.SetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspection.aspx.cs:行号 310
- 在 FineUIPro.Web.OfficeCheck.Inspect.ProjectQualityInspection.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspection.aspx.cs:行号 36
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/08/2025 19:29:18
-出错文件:http://localhost:4528/OfficeCheck/Inspect/ProjectQualityInspection.aspx
-IP地址:::1
-
-出错时间:04/08/2025 19:29:18
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.OfficeCheck.Inspect.ProjectQualityInspection.SetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspection.aspx.cs:行号 310
- 在 FineUIPro.Web.OfficeCheck.Inspect.ProjectQualityInspection.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspection.aspx.cs:行号 36
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/08/2025 19:30:40
-出错文件:http://localhost:4528/OfficeCheck/Inspect/ProjectQualityInspection.aspx
-IP地址:::1
-
-出错时间:04/08/2025 19:30:40
-
-
-错误信息开始=====>
-错误类型:ChangeConflictException
-错误信息:找不到行或行已更改。
-错误堆栈:
- 在 System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode)
- 在 System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode)
- 在 System.Data.Linq.DataContext.SubmitChanges()
- 在 FineUIPro.Web.OfficeCheck.Inspect.ProjectQualityInspection.btnMenuDel_Click(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspection.aspx.cs:行号 337
- 在 FineUIPro.MenuButton.OnClick(EventArgs e)
- 在 (MenuButton , EventArgs )
- 在 FineUIPro.MenuButton.RaisePostBackEvent(String eventArgument)
- 在 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
- 在 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/08/2025 19:31:23
-出错文件:http://localhost:4528/OfficeCheck/Inspect/ProjectQualityInspection.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/08/2025 19:31:23
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.OfficeCheck.Inspect.ProjectQualityInspection.SetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspection.aspx.cs:行号 310
- 在 FineUIPro.Web.OfficeCheck.Inspect.ProjectQualityInspection.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspection.aspx.cs:行号 36
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/08/2025 19:33:21
-出错文件:http://localhost:4528/OfficeCheck/Inspect/ProjectQualityInspection.aspx
-IP地址:::1
-
-出错时间:04/08/2025 19:33:21
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.OfficeCheck.Inspect.ProjectQualityInspection.SetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspection.aspx.cs:行号 310
- 在 FineUIPro.Web.OfficeCheck.Inspect.ProjectQualityInspection.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspection.aspx.cs:行号 36
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/08/2025 19:40:34
-出错文件:http://localhost:4528/OfficeCheck/Inspect/ProjectQualityInspection.aspx
-IP地址:::1
-
-出错时间:04/08/2025 19:40:34
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.OfficeCheck.Inspect.ProjectQualityInspection.SetButtonPower() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspection.aspx.cs:行号 310
- 在 FineUIPro.Web.OfficeCheck.Inspect.ProjectQualityInspection.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\OfficeCheck\Inspect\ProjectQualityInspection.aspx.cs:行号 36
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/08/2025 19:55:33
-出错文件:http://localhost:4528/OfficeCheck/Inspect/ProjectQualityInspection.aspx
-IP地址:::1
-
-出错时间:04/08/2025 19:55:33
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.CQMS.Check.ChecklistEdit.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\CQMS\Check\ChecklistEdit.aspx.cs:行号 131
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/10/2025 09:40:22
-出错文件:http://localhost:4528/CQMS/Check/ChecklistEdit.aspx
-IP地址:::1
-
-出错时间:04/10/2025 09:40:22
-
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.index.Page_Init(Object sender, EventArgs e)
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnInit(EventArgs e)
- 在 System.Web.UI.Page.OnInit(EventArgs e)
- 在 System.Web.UI.Control.InitRecursive(Control namingContainer)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/12/2025 17:19:12
-出错文件:http://localhost:4528/index.aspx
-IP地址:::1
-
-出错时间:04/12/2025 17:19:12
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.common.mainProject.getCQMSProblem() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 535
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 60
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/12/2025 17:28:28
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:04/12/2025 17:28:28
-
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.CQMS.Check.CheckList.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\CQMS\Check\CheckList.aspx.cs:行号 70
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/12/2025 18:42:05
-出错文件:http://localhost:4528/CQMS/Check/CheckList.aspx
-IP地址:::1
-
-出错时间:04/12/2025 18:42:05
-
-
-
-错误信息开始=====>
-错误类型:HttpException
-错误信息:DataBinding:“System.Data.DataRowView”不包含名为“State”的属性。
-错误堆栈:
- 在 System.Web.UI.DataBinder.GetPropertyValue(Object container, String propName)
- 在 System.Web.UI.DataBinder.Eval(Object container, String[] expressionParts)
- 在 System.Web.UI.DataBinder.Eval(Object container, String expression)
- 在 System.Web.UI.TemplateControl.Eval(String expression)
- 在 ASP.cqms_check_checklist_aspx.__DataBindinglabState(Object sender, EventArgs e) 位置 e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\CQMS\Check\CheckList.aspx:行号 173
- 在 System.Web.UI.Control.OnDataBinding(EventArgs e)
- 在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
- 在 System.Web.UI.Control.DataBind()
- 在 System.Web.UI.Control.DataBindChildren()
- 在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
- 在 System.Web.UI.Control.DataBind()
- 在 (Control )
- 在 FineUIPro.GridRow.BkpgFeAELTFlAvoTrOBrConfcLJbA()
- 在 (GridRow )
- 在 FineUIPro.Grid.BkpgFeAELTFlAvoTrOBrConfcLJbA(Int32 , Object )
- 在 (Grid , Int32 , Object )
- 在 FineUIPro.Grid.LDChsdiaqdhUTcxBcQPMKyQFfjEDB(DataTable , Boolean )
- 在 (Grid , DataTable , Boolean )
- 在 FineUIPro.Grid.DataBind(Boolean keepCurrentData)
- 在 (Grid , Boolean )
- 在 FineUIPro.Grid.DataBind()
- 在 FineUIPro.Web.CQMS.Check.CheckList.BindGrid() 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\CQMS\Check\CheckList.aspx.cs:行号 393
- 在 FineUIPro.Web.CQMS.Check.CheckList.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\CQMS\Check\CheckList.aspx.cs:行号 88
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/12/2025 18:42:25
-出错文件:http://localhost:4528/CQMS/Check/CheckList.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/12/2025 18:42:25
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.CQMS.Check.CheckList.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\CQMS\Check\CheckList.aspx.cs:行号 70
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/12/2025 18:44:03
-出错文件:http://localhost:4528/CQMS/Check/CheckList.aspx
-IP地址:::1
-
-出错时间:04/12/2025 18:44:04
-
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.indexProject.Page_Load(Object sender, EventArgs e)
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/12/2025 21:33:26
-出错文件:http://localhost:4528/indexProject.aspx?projectId=195f0bcf-1781-4a8e-846c-20a35801bb9b
-IP地址:::1
-
-出错时间:04/12/2025 21:33:26
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.CQMS.Check.CheckList.ConvertImageUrlByImage(Object registrationId)
- 在 ASP.cqms_check_checklist_aspx.__DataBindinglbImageUrl(Object sender, EventArgs e) 位置 e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\CQMS\Check\CheckList.aspx:行号 172
- 在 System.Web.UI.Control.OnDataBinding(EventArgs e)
- 在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
- 在 System.Web.UI.Control.DataBind()
- 在 System.Web.UI.Control.DataBindChildren()
- 在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
- 在 System.Web.UI.Control.DataBind()
- 在 (Control )
- 在 FineUIPro.GridRow.BkpgFeAELTFlAvoTrOBrConfcLJbA()
- 在 (GridRow )
- 在 FineUIPro.Grid.BkpgFeAELTFlAvoTrOBrConfcLJbA(Int32 , Object )
- 在 (Grid , Int32 , Object )
- 在 FineUIPro.Grid.LDChsdiaqdhUTcxBcQPMKyQFfjEDB(DataTable , Boolean )
- 在 (Grid , DataTable , Boolean )
- 在 FineUIPro.Grid.DataBind(Boolean keepCurrentData)
- 在 (Grid , Boolean )
- 在 FineUIPro.Grid.DataBind()
- 在 FineUIPro.Web.CQMS.Check.CheckList.BindGrid()
- 在 FineUIPro.Web.CQMS.Check.CheckList.Page_Load(Object sender, EventArgs e)
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/12/2025 21:51:19
-出错文件:http://localhost:4528/CQMS/Check/CheckList.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/12/2025 21:51:19
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.CQMS.Check.CheckList.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\CQMS\Check\CheckList.aspx.cs:行号 70
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/12/2025 21:59:53
-出错文件:http://localhost:4528/CQMS/Check/CheckList.aspx
-IP地址:::1
-
-出错时间:04/12/2025 21:59:54
-
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.CQMS.Check.CheckList.Page_Load(Object sender, EventArgs e) 位置 E:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\CQMS\Check\CheckList.aspx.cs:行号 70
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/12/2025 22:02:24
-出错文件:http://localhost:4528/CQMS/Check/CheckList.aspx
-IP地址:::1
-
-出错时间:04/12/2025 22:02:24
-
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.index.Page_Init(Object sender, EventArgs e) 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\index.aspx.cs:行号 57
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnInit(EventArgs e)
- 在 System.Web.UI.Page.OnInit(EventArgs e)
- 在 System.Web.UI.Control.InitRecursive(Control namingContainer)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/18/2025 17:54:34
-出错文件:http://localhost:4528/index.aspx
-IP地址:::1
-
-出错时间:04/18/2025 17:54:34
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.Page_Load(Object sender, EventArgs e) 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Meeting\ClassMeeting.aspx.cs:行号 40
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/18/2025 18:09:25
-出错文件:http://localhost:4528/HSSE/Meeting/ClassMeeting.aspx
-IP地址:::1
-
-出错时间:04/18/2025 18:09:25
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:关键字 'group' 附近有语法错误。
-错误堆栈:
- 在 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
- 在 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
- 在 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
- 在 System.Data.SqlClient.SqlDataReader.get_MetaData()
- 在 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
- 在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable)
- 在 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\BLL\SQLHelper.cs:行号 311
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.BindGrid() 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Meeting\ClassMeeting.aspx.cs:行号 101
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.Page_Load(Object sender, EventArgs e) 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Meeting\ClassMeeting.aspx.cs:行号 62
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/18/2025 18:10:33
-出错文件:http://localhost:4528/HSSE/Meeting/ClassMeeting.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/18/2025 18:10:33
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:关键字 'group' 附近有语法错误。
-错误堆栈:
- 在 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
- 在 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
- 在 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
- 在 System.Data.SqlClient.SqlDataReader.get_MetaData()
- 在 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
- 在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable)
- 在 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\BLL\SQLHelper.cs:行号 311
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.BindGrid()
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.Page_Load(Object sender, EventArgs e)
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/18/2025 18:12:24
-出错文件:http://localhost:4528/HSSE/Meeting/ClassMeeting.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/18/2025 18:12:24
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.Page_Load(Object sender, EventArgs e) 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Meeting\ClassMeeting.aspx.cs:行号 40
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/18/2025 18:41:10
-出错文件:http://localhost:4528/HSSE/Meeting/ClassMeeting.aspx
-IP地址:::1
-
-出错时间:04/18/2025 18:41:10
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:关键字 'group' 附近有语法错误。
-错误堆栈:
- 在 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
- 在 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
- 在 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
- 在 System.Data.SqlClient.SqlDataReader.get_MetaData()
- 在 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
- 在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable)
- 在 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\BLL\SQLHelper.cs:行号 311
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.BindGrid() 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Meeting\ClassMeeting.aspx.cs:行号 101
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.Page_Load(Object sender, EventArgs e) 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Meeting\ClassMeeting.aspx.cs:行号 62
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/18/2025 18:42:14
-出错文件:http://localhost:4528/HSSE/Meeting/ClassMeeting.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/18/2025 18:42:14
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:关键字 'group' 附近有语法错误。
-错误堆栈:
- 在 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
- 在 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
- 在 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
- 在 System.Data.SqlClient.SqlDataReader.get_MetaData()
- 在 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
- 在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable)
- 在 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\BLL\SQLHelper.cs:行号 311
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.BindGrid() 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Meeting\ClassMeeting.aspx.cs:行号 101
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.Page_Load(Object sender, EventArgs e) 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Meeting\ClassMeeting.aspx.cs:行号 62
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/18/2025 18:43:19
-出错文件:http://localhost:4528/HSSE/Meeting/ClassMeeting.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/18/2025 18:43:20
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:关键字 'AND' 附近有语法错误。
-错误堆栈:
- 在 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
- 在 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
- 在 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
- 在 System.Data.SqlClient.SqlDataReader.get_MetaData()
- 在 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
- 在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable)
- 在 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\BLL\SQLHelper.cs:行号 311
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.BindGrid()
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.Page_Load(Object sender, EventArgs e)
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/18/2025 18:48:46
-出错文件:http://localhost:4528/HSSE/Meeting/ClassMeeting.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/18/2025 18:48:46
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.Page_Load(Object sender, EventArgs e) 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Meeting\ClassMeeting.aspx.cs:行号 40
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/18/2025 18:51:33
-出错文件:http://localhost:4528/HSSE/Meeting/ClassMeeting.aspx
-IP地址:::1
-
-出错时间:04/18/2025 18:51:33
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.Page_Load(Object sender, EventArgs e) 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Meeting\ClassMeeting.aspx.cs:行号 40
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/18/2025 18:58:08
-出错文件:http://localhost:4528/HSSE/Meeting/ClassMeeting.aspx
-IP地址:::1
-
-出错时间:04/18/2025 18:58:09
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.Page_Load(Object sender, EventArgs e) 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Meeting\ClassMeeting.aspx.cs:行号 40
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/18/2025 19:05:55
-出错文件:http://localhost:4528/HSSE/Meeting/ClassMeeting.aspx
-IP地址:::1
-
-出错时间:04/18/2025 19:05:55
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.Page_Load(Object sender, EventArgs e) 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Meeting\ClassMeeting.aspx.cs:行号 40
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/18/2025 19:25:56
-出错文件:http://localhost:4528/HSSE/Meeting/ClassMeeting.aspx
-IP地址:::1
-
-出错时间:04/18/2025 19:25:56
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.Page_Load(Object sender, EventArgs e) 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Meeting\ClassMeeting.aspx.cs:行号 40
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/18/2025 19:30:26
-出错文件:http://localhost:4528/HSSE/Meeting/ClassMeeting.aspx
-IP地址:::1
-
-出错时间:04/18/2025 19:30:27
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.Page_Load(Object sender, EventArgs e)
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/18/2025 19:32:03
-出错文件:http://localhost:4528/HSSE/Meeting/ClassMeeting.aspx
-IP地址:::1
-
-出错时间:04/18/2025 19:32:03
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.Page_Load(Object sender, EventArgs e) 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Meeting\ClassMeeting.aspx.cs:行号 40
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/18/2025 19:37:51
-出错文件:http://localhost:4528/HSSE/Meeting/ClassMeeting.aspx
-IP地址:::1
-
-出错时间:04/18/2025 19:37:52
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.Page_Load(Object sender, EventArgs e) 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Meeting\ClassMeeting.aspx.cs:行号 40
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/18/2025 20:01:43
-出错文件:http://localhost:4528/HSSE/Meeting/ClassMeeting.aspx
-IP地址:::1
-
-出错时间:04/18/2025 20:01:43
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.Page_Load(Object sender, EventArgs e) 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Meeting\ClassMeeting.aspx.cs:行号 40
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/18/2025 20:17:46
-出错文件:http://localhost:4528/HSSE/Meeting/ClassMeeting.aspx
-IP地址:::1
-
-出错时间:04/18/2025 20:17:47
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.Page_Load(Object sender, EventArgs e) 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Meeting\ClassMeeting.aspx.cs:行号 40
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/27/2025 09:11:27
-出错文件:http://localhost:4528/HSSE/Meeting/ClassMeeting.aspx
-IP地址:::1
-
-出错时间:04/27/2025 09:11:28
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.indexProject.Page_Load(Object sender, EventArgs e) 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\indexProject.aspx.cs:行号 369
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/27/2025 09:11:27
-出错文件:http://localhost:4528/indexProject.aspx?projectId=807159c3-1275-4d87-a6d3-8711ec6724d3
-IP地址:::1
-
-出错时间:04/27/2025 09:11:28
-
-
-错误信息开始=====>
-错误类型:InvalidOperationException
-错误信息:意外的类型代码: DBNull
-错误堆栈:
- 在 System.Data.Linq.SqlClient.SqlTypeSystem.Sql2005Provider.From(Type type, Nullable`1 size)
- 在 System.Data.Linq.SqlClient.SqlTypeSystem.Sql2008Provider.From(Type type, Nullable`1 size)
- 在 System.Data.Linq.SqlClient.SqlTypeSystem.ProviderBase.From(Type type)
- 在 System.Data.Linq.SqlClient.SqlTypeSystem.ProviderBase.From(Object o)
- 在 System.Data.Linq.SqlClient.SqlFactory.ValueFromObject(Object value, Type clrType, Boolean isClientSpecified, Expression sourceExpression)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInvocation(InvocationExpression invoke)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitWhere(Expression sequence, LambdaExpression predicate)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitAggregate(Expression sequence, LambdaExpression lambda, SqlNodeType aggType, Type returnType)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.ConvertOuter(Expression node)
- 在 System.Data.Linq.SqlClient.SqlProvider.BuildQuery(Expression query, SqlNodeAnnotations annotations)
- 在 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 在 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
- 在 System.Linq.Queryable.Sum[TSource](IQueryable`1 source, Expression`1 selector)
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.setProjectGroupPersonSum(Object groupId) 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Meeting\ClassMeeting.aspx.cs:行号 216
- 在 ASP.hsse_meeting_classmeeting_aspx.__DataBindingLabel1(Object sender, EventArgs e) 位置 e:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Meeting\ClassMeeting.aspx:行号 70
- 在 System.Web.UI.Control.OnDataBinding(EventArgs e)
- 在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
- 在 System.Web.UI.Control.DataBind()
- 在 System.Web.UI.Control.DataBindChildren()
- 在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
- 在 System.Web.UI.Control.DataBind()
- 在 (Control )
- 在 FineUIPro.GridRow.BkpgFeAELTFlAvoTrOBrConfcLJbA()
- 在 (GridRow )
- 在 FineUIPro.Grid.BkpgFeAELTFlAvoTrOBrConfcLJbA(Int32 , Object )
- 在 (Grid , Int32 , Object )
- 在 FineUIPro.Grid.LDChsdiaqdhUTcxBcQPMKyQFfjEDB(DataTable , Boolean )
- 在 (Grid , DataTable , Boolean )
- 在 FineUIPro.Grid.DataBind(Boolean keepCurrentData)
- 在 (Grid , Boolean )
- 在 FineUIPro.Grid.DataBind()
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.BindGrid() 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Meeting\ClassMeeting.aspx.cs:行号 106
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.Page_Load(Object sender, EventArgs e) 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Meeting\ClassMeeting.aspx.cs:行号 62
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/27/2025 09:14:31
-出错文件:http://localhost:4528/HSSE/Meeting/ClassMeeting.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/27/2025 09:14:31
-
-
-错误信息开始=====>
-错误类型:HotReloadException
-错误信息:已尝试调用已删除的方法实现。在应用程序运行时删除方法或更改其名称或签名就可能会发生这种情况。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.setProjectGroupPersonSum(Object groupId)
- 在 ASP.hsse_meeting_classmeeting_aspx.__DataBindingLabel1(Object sender, EventArgs e) 位置 e:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Meeting\ClassMeeting.aspx:行号 70
- 在 System.Web.UI.Control.OnDataBinding(EventArgs e)
- 在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
- 在 System.Web.UI.Control.DataBind()
- 在 System.Web.UI.Control.DataBindChildren()
- 在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
- 在 System.Web.UI.Control.DataBind()
- 在 (Control )
- 在 FineUIPro.GridRow.BkpgFeAELTFlAvoTrOBrConfcLJbA()
- 在 (GridRow )
- 在 FineUIPro.Grid.BkpgFeAELTFlAvoTrOBrConfcLJbA(Int32 , Object )
- 在 (Grid , Int32 , Object )
- 在 FineUIPro.Grid.LDChsdiaqdhUTcxBcQPMKyQFfjEDB(DataTable , Boolean )
- 在 (Grid , DataTable , Boolean )
- 在 FineUIPro.Grid.DataBind(Boolean keepCurrentData)
- 在 (Grid , Boolean )
- 在 FineUIPro.Grid.DataBind()
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.BindGrid()
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.Page_Load(Object sender, EventArgs e)
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/27/2025 09:16:05
-出错文件:http://localhost:4528/HSSE/Meeting/ClassMeeting.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/27/2025 09:16:05
-
-
-错误信息开始=====>
-错误类型:InvalidOperationException
-错误信息:意外的类型代码: DBNull
-错误堆栈:
- 在 System.Data.Linq.SqlClient.SqlTypeSystem.Sql2005Provider.From(Type type, Nullable`1 size)
- 在 System.Data.Linq.SqlClient.SqlTypeSystem.Sql2008Provider.From(Type type, Nullable`1 size)
- 在 System.Data.Linq.SqlClient.SqlTypeSystem.ProviderBase.From(Type type)
- 在 System.Data.Linq.SqlClient.SqlTypeSystem.ProviderBase.From(Object o)
- 在 System.Data.Linq.SqlClient.SqlFactory.ValueFromObject(Object value, Type clrType, Boolean isClientSpecified, Expression sourceExpression)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInvocation(InvocationExpression invoke)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitBinary(BinaryExpression b)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitExpression(Expression exp)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitWhere(Expression sequence, LambdaExpression predicate)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitAggregate(Expression sequence, LambdaExpression lambda, SqlNodeType aggType, Type returnType)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
- 在 System.Data.Linq.SqlClient.QueryConverter.ConvertOuter(Expression node)
- 在 System.Data.Linq.SqlClient.SqlProvider.BuildQuery(Expression query, SqlNodeAnnotations annotations)
- 在 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 在 System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
- 在 System.Linq.Queryable.Sum[TSource](IQueryable`1 source, Expression`1 selector)
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.setProjectGroupPersonSum(Object groupId)
- 在 ASP.hsse_meeting_classmeeting_aspx.__DataBindingLabel1(Object sender, EventArgs e) 位置 e:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Meeting\ClassMeeting.aspx:行号 70
- 在 System.Web.UI.Control.OnDataBinding(EventArgs e)
- 在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
- 在 System.Web.UI.Control.DataBind()
- 在 System.Web.UI.Control.DataBindChildren()
- 在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
- 在 System.Web.UI.Control.DataBind()
- 在 (Control )
- 在 FineUIPro.GridRow.BkpgFeAELTFlAvoTrOBrConfcLJbA()
- 在 (GridRow )
- 在 FineUIPro.Grid.BkpgFeAELTFlAvoTrOBrConfcLJbA(Int32 , Object )
- 在 (Grid , Int32 , Object )
- 在 FineUIPro.Grid.LDChsdiaqdhUTcxBcQPMKyQFfjEDB(DataTable , Boolean )
- 在 (Grid , DataTable , Boolean )
- 在 FineUIPro.Grid.DataBind(Boolean keepCurrentData)
- 在 (Grid , Boolean )
- 在 FineUIPro.Grid.DataBind()
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.BindGrid()
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.Page_Load(Object sender, EventArgs e)
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:04/27/2025 09:20:04
-出错文件:http://localhost:4528/HSSE/Meeting/ClassMeeting.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:04/27/2025 09:20:04
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.common.mainProject.getCQMSProblem() 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 531
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 60
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:05/09/2025 10:49:30
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:05/09/2025 10:49:30
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.indexProject.Page_Load(Object sender, EventArgs e) 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\indexProject.aspx.cs:行号 369
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:05/09/2025 11:16:26
-出错文件:http://localhost:4528/indexProject.aspx?projectId=b65e57ea-93f5-416a-86fc-e0db7570ec58
-IP地址:::1
-
-出错时间:05/09/2025 11:16:26
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.common.mainProject.getCQMSProblem() 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 531
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 60
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:05/09/2025 11:23:25
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:05/09/2025 11:23:26
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.common.mainProject.getCQMSProblem() 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 531
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 60
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:05/09/2025 14:39:49
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:05/09/2025 14:39:49
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.common.mainProject.getCQMSProblem() 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 531
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 60
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:05/09/2025 14:40:29
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:05/09/2025 14:40:29
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.common.mainProject.getCQMSProblem() 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 536
- 在 FineUIPro.Web.common.mainProject.Page_Load(Object sender, EventArgs e) 位置 E:\Workstation\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 60
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:05/09/2025 15:05:47
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-
-出错时间:05/09/2025 15:05:47
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 ASP.attachfile_onlineediting_aspx.__Render__control3(HtmlTextWriter __w, Control parameterContainer) 位置 e:\公司项目\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\AttachFile\OnlineEditing.aspx:行号 105
- 在 System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children)
- 在 System.Web.UI.HtmlControls.HtmlHead.RenderChildren(HtmlTextWriter writer)
- 在 System.Web.UI.HtmlControls.HtmlContainerControl.Render(HtmlTextWriter writer)
- 在 System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter)
- 在 System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter)
- 在 System.Web.UI.Control.RenderControl(HtmlTextWriter writer)
- 在 System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children)
- 在 System.Web.UI.Control.RenderChildren(HtmlTextWriter writer)
- 在 System.Web.UI.Page.Render(HtmlTextWriter writer)
- 在 System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter)
- 在 System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter)
- 在 System.Web.UI.Control.RenderControl(HtmlTextWriter writer)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:05/14/2025 17:37:21
-出错文件:http://localhost:4528/AttachFile/OnlineEditing.aspx
-IP地址:::1
-
-出错时间:05/14/2025 17:37:21
-
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.Page_Load(Object sender, EventArgs e) 位置 E:\COMPANYPROJECT\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Meeting\ClassMeeting.aspx.cs:行号 40
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:06/04/2025 09:55:34
-出错文件:http://localhost:4528/HSSE/Meeting/ClassMeeting.aspx
-IP地址:::1
-
-出错时间:06/04/2025 09:55:34
-
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.Page_Load(Object sender, EventArgs e) 位置 E:\COMPANYPROJECT\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Meeting\ClassMeeting.aspx.cs:行号 40
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:06/04/2025 10:21:52
-出错文件:http://localhost:4528/HSSE/Meeting/ClassMeeting.aspx
-IP地址:::1
-
-出错时间:06/04/2025 10:21:52
-
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeeting.Page_Load(Object sender, EventArgs e) 位置 E:\COMPANYPROJECT\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\HSSE\Meeting\ClassMeeting.aspx.cs:行号 40
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:06/05/2025 14:16:02
-出错文件:http://localhost:4528/HSSE/Meeting/ClassMeeting.aspx
-IP地址:::1
-
-出错时间:06/05/2025 14:16:02
-
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.common.mainProject.get_VideoUserName() 位置 E:\COMPANYPROJECT\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx.cs:行号 800
- 在 ASP.common_mainproject_aspx.__Render__control1(HtmlTextWriter __w, Control parameterContainer) 位置 e:\COMPANYPROJECT\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\common\mainProject.aspx:行号 1023
- 在 System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children)
- 在 System.Web.UI.Control.RenderChildren(HtmlTextWriter writer)
- 在 System.Web.UI.Page.Render(HtmlTextWriter writer)
- 在 System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter)
- 在 System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter)
- 在 System.Web.UI.Control.RenderControl(HtmlTextWriter writer)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:08/12/2025 14:50:09
-出错文件:http://localhost:4528/common/mainProject.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:08/12/2025 14:50:09
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:DELETE 语句与 REFERENCE 约束"FK_Meeting_ClassMeeting_ProjectData_TeamGroup"冲突。该冲突发生于数据库"SGGLDB_HBAZ",表"dbo.Meeting_ClassMeeting", column 'TeamGroupId'。
-语句已终止。
-错误堆栈:
- 在 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
- 在 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
- 在 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 在 System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(TaskCompletionSource`1 completion, String methodName, Boolean sendToPipe, Int32 timeout, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 在 System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
- 在 System.Data.Linq.SqlClient.SqlProvider.Execute(Expression query, QueryInfo queryInfo, IObjectReaderFactory factory, Object[] parentArgs, Object[] userArgs, ICompiledSubQuery[] subQueries, Object lastResult)
- 在 System.Data.Linq.SqlClient.SqlProvider.ExecuteAll(Expression query, QueryInfo[] queryInfos, IObjectReaderFactory factory, Object[] userArguments, ICompiledSubQuery[] subQueries)
- 在 System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
- 在 System.Data.Linq.ChangeDirector.StandardChangeDirector.DynamicDelete(TrackedObject item)
- 在 System.Data.Linq.ChangeDirector.StandardChangeDirector.Delete(TrackedObject item)
- 在 System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode)
- 在 System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode)
- 在 System.Data.Linq.DataContext.SubmitChanges()
- 在 BLL.TeamGroupService.DeleteTeamGroupById(String teamGroupId) 位置 E:\COMPANYPROJECT\河北安装\SGGL_HBAZ\SGGL\BLL\ProjectData\TeamGroupService.cs:行号 90
- 在 FineUIPro.Web.ProjectData.TeamGroup.btnMenuDelete_Click(Object sender, EventArgs e) 位置 E:\COMPANYPROJECT\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\ProjectData\TeamGroup.aspx.cs:行号 197
- 在 FineUIPro.MenuButton.OnClick(EventArgs e)
- 在 (MenuButton , EventArgs )
- 在 FineUIPro.MenuButton.RaisePostBackEvent(String eventArgument)
- 在 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
- 在 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:08/27/2025 15:49:42
-出错文件:http://localhost:4528/ProjectData/TeamGroup.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:08/27/2025 15:49:42
-
-
-错误信息开始=====>
-错误类型:ChangeConflictException
-错误信息:找不到行或行已更改。
-错误堆栈:
- 在 System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode)
- 在 System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode)
- 在 System.Data.Linq.DataContext.SubmitChanges()
- 在 BLL.TeamGroupService.DeleteTeamGroupById(String teamGroupId) 位置 E:\COMPANYPROJECT\河北安装\SGGL_HBAZ\SGGL\BLL\ProjectData\TeamGroupService.cs:行号 90
- 在 FineUIPro.Web.ProjectData.TeamGroup.btnMenuDelete_Click(Object sender, EventArgs e) 位置 E:\COMPANYPROJECT\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\ProjectData\TeamGroup.aspx.cs:行号 197
- 在 FineUIPro.MenuButton.OnClick(EventArgs e)
- 在 (MenuButton , EventArgs )
- 在 FineUIPro.MenuButton.RaisePostBackEvent(String eventArgument)
- 在 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
- 在 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:08/27/2025 15:50:16
-出错文件:http://localhost:4528/ProjectData/TeamGroup.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:08/27/2025 15:50:16
-
-
-错误信息开始=====>
-错误类型:ChangeConflictException
-错误信息:找不到行或行已更改。
-错误堆栈:
- 在 System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode)
- 在 System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode)
- 在 System.Data.Linq.DataContext.SubmitChanges()
- 在 BLL.TeamGroupService.DeleteTeamGroupById(String teamGroupId) 位置 E:\COMPANYPROJECT\河北安装\SGGL_HBAZ\SGGL\BLL\ProjectData\TeamGroupService.cs:行号 90
- 在 FineUIPro.Web.ProjectData.TeamGroup.btnMenuDelete_Click(Object sender, EventArgs e) 位置 E:\COMPANYPROJECT\河北安装\SGGL_HBAZ\SGGL\FineUIPro.Web\ProjectData\TeamGroup.aspx.cs:行号 197
- 在 FineUIPro.MenuButton.OnClick(EventArgs e)
- 在 (MenuButton , EventArgs )
- 在 FineUIPro.MenuButton.RaisePostBackEvent(String eventArgument)
- 在 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
- 在 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:08/27/2025 15:53:16
-出错文件:http://localhost:4528/ProjectData/TeamGroup.aspx
-IP地址:::1
-操作人员:徐月
-
-出错时间:08/27/2025 15:53:16
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HSSE.Meeting.ClassMeetingView.Page_Load(Object sender, EventArgs e)
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnLoad(EventArgs e)
- 在 System.Web.UI.Control.LoadRecursive()
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:09/03/2025 16:30:19
-出错文件:http://localhost:4528/HSSE/Meeting/ClassMeetingView.aspx?ClassMeetingId=506fa08f-8e66-4db5-a4d8-090c83214816
-IP地址:::1
-操作人员:徐月
-
-出错时间:09/03/2025 16:30:19
-
+
\ No newline at end of file
diff --git a/SGGL/FineUIPro.Web/HJGL/WeldingReport/WeldingStatistical.aspx b/SGGL/FineUIPro.Web/HJGL/WeldingReport/WeldingStatistical.aspx
index a12abe0..6fdce14 100644
--- a/SGGL/FineUIPro.Web/HJGL/WeldingReport/WeldingStatistical.aspx
+++ b/SGGL/FineUIPro.Web/HJGL/WeldingReport/WeldingStatistical.aspx
@@ -34,16 +34,15 @@
-
+
- <%--
- --%>
+
+
@@ -61,7 +60,7 @@
@@ -76,7 +75,7 @@
FieldType="String" HeaderTextAlign="Center" TextAlign="Left" Width="260px">
--%>
+ FieldType="String" HeaderTextAlign="Center" TextAlign="Left" Width="120px">
@@ -87,7 +86,7 @@
-
protected global::FineUIPro.DropDownList drpWorkArea;
+ ///
+ /// drpTeamGroupId 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.DropDownList drpTeamGroupId;
+
///
/// txtStarTime 控件。
///