diff --git a/.gitignore b/.gitignore
index 6e23b8e..84a96d7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -85,4 +85,19 @@ HJGL_ZH/BLL/bin/Release/NPOI.OpenXmlFormats.dll
/HJGL_ZH/packages
/HJGL_ZH/WebAPI/bin
/HJGL_ZH/WebAPI/obj
+/DataBase
/HJGL_ZH/.vs/SGGL
+/HJGL_ZH/BLL/.vs
+/HJGL_ZH/FineUIPro.Web/.vs
+/HJGL_ZH/Model/.vs
+/HJGL_ZH/WebAPI/.vs
+/HJGL_ZH/Model/obj/Debug
+/HJGL_ZH/FineUIPro.Web/ErrLog.txt
+/HJGL_ZH/FineUIPro.Web/Web.config
+/HJGL_ZH/Model/obj/Release/.NETFramework,Version=v4.0.AssemblyAttributes.cs
+/HJGL_ZH/Model/obj/Release/Model.csproj.AssemblyReference.cache
+/HJGL_ZH/Model/obj/Release/Model.csproj.CoreCompileInputs.cache
+/HJGL_ZH/Model/obj/Release/Model.csproj.FileListAbsolute.txt
+/HJGL_ZH/Model/obj/Release/Model.dll
+/HJGL_ZH/Model/obj/Release/Model.pdb
+/HJGL_ZH/WebAPI/Web.config
diff --git a/HJGL_ZH/BLL/Common/Const.cs b/HJGL_ZH/BLL/Common/Const.cs
index b092fcd..b340e64 100644
--- a/HJGL_ZH/BLL/Common/Const.cs
+++ b/HJGL_ZH/BLL/Common/Const.cs
@@ -1991,6 +1991,11 @@ namespace BLL
///
public const string HJGL_SubUnitRepairReportId = "47";
+ ///
+ /// 管道焊口检测委托单
+ ///
+ public const string HJGL_TrustReport3Id = "99";
+
///
/// 材料标签
///
diff --git a/HJGL_ZH/BLL/Common/ReportPrint/Common_ReportPrintService.cs b/HJGL_ZH/BLL/Common/ReportPrint/Common_ReportPrintService.cs
index a12fbfe..bfc663b 100644
--- a/HJGL_ZH/BLL/Common/ReportPrint/Common_ReportPrintService.cs
+++ b/HJGL_ZH/BLL/Common/ReportPrint/Common_ReportPrintService.cs
@@ -46,6 +46,7 @@ namespace BLL
dic.Add("焊接系统_管线硬度检验报告(一)", BLL.Const.HJGL_IsoHardTestReportId1);
dic.Add("焊接系统_管线硬度检验报告(二)", BLL.Const.HJGL_IsoHardTestReportId2);
dic.Add("焊接系统_焊缝检测委托单", BLL.Const.HJGL_TrustReportId);
+ dic.Add("焊接系统_管道焊口检测委托单", BLL.Const.HJGL_TrustReport3Id);
dic.Add("焊接系统_返修焊缝检测委托单", BLL.Const.HJGL_RepairReportId);
dic.Add("焊接系统_无损检测委托单(承包商)", BLL.Const.HJGL_SubUnitTrustReportId);
dic.Add("焊接系统_返修检测委托单(承包商)", BLL.Const.HJGL_SubUnitRepairReportId);
diff --git a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/TestOrderPrint.aspx b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/TestOrderPrint.aspx
index 1bacafd..67df708 100644
--- a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/TestOrderPrint.aspx
+++ b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/TestOrderPrint.aspx
@@ -72,8 +72,8 @@
Title="底部面板" ShowBorder="false" ShowHeader="false" Layout="Fit">
+ DataKeyNames="ISO_ID" AllowSorting="true" SortField="CH_TrustDate" OnSort="Grid2_Sort"
+ SortDirection="DESC" EnableCheckBoxSelect="true">
diff --git a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/TestOrderPrint.aspx.cs b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/TestOrderPrint.aspx.cs
index b0204a9..187f14e 100644
--- a/HJGL_ZH/FineUIPro.Web/ContinuousPrint/TestOrderPrint.aspx.cs
+++ b/HJGL_ZH/FineUIPro.Web/ContinuousPrint/TestOrderPrint.aspx.cs
@@ -67,8 +67,15 @@ namespace FineUIPro.Web.ContinuousPrint
{
str += " and isnull(a.CH_PrintDate,'')=''";
}
+
}
- string strSql = @"select a.CH_TrustID,a.CH_TrustCode,a.CH_TrustDate,a.CH_Printer,a.CH_PrintDate,b.ProjectCode,b.ProjectName,b.ShortName,b.StartDate,b.EndDate from HJGL_CH_Trust as a inner join Base_Project as b on a.ProjectId=b.ProjectId where 1=1 and a.ProjectId= @ProjectId" + str;
+ str += " ORDER BY a.CH_TrustDate DESC";
+
+ string strSql = @"select a.CH_TrustID,a.CH_TrustCode,a.CH_TrustDate,a.CH_Printer,
+ a.CH_PrintDate,b.ProjectCode,b.ProjectName,b.ShortName,b.StartDate,b.EndDate
+ from HJGL_CH_Trust as a
+ inner join Base_Project as b on a.ProjectId=b.ProjectId
+ where 1=1 and a.ProjectId= @ProjectId" + str;
List listStr = new List();
listStr.Add(new SqlParameter("@ProjectId", ProjectId));
SqlParameter[] parameter = listStr.ToArray();
@@ -112,6 +119,11 @@ namespace FineUIPro.Web.ContinuousPrint
Grid1.SortField = e.SortField;
BindGrid();
}
+
+ protected void Grid2_Sort(object sender, FineUIPro.GridSortEventArgs e)
+ {
+ BindGrid1(this.Grid1.SelectedRowID);
+ }
#endregion
#region 选择加载
diff --git a/HJGL_ZH/FineUIPro.Web/ErrLog.txt b/HJGL_ZH/FineUIPro.Web/ErrLog.txt
deleted file mode 100644
index 5d3def4..0000000
--- a/HJGL_ZH/FineUIPro.Web/ErrLog.txt
+++ /dev/null
@@ -1,2606 +0,0 @@
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web._default.Page_Init(Object sender, EventArgs e) 位置 D:\MyProject\ZHNew\HJGL_ZH\HJGL_ZH\FineUIPro.Web\default.aspx.cs:行号 115
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnInit(EventArgs e)
- 在 System.Web.UI.Page.OnInit(EventArgs e)
- 在 FineUIPro.Web.PageBase.OnInit(EventArgs e) 位置 D:\MyProject\ZHNew\HJGL_ZH\HJGL_ZH\FineUIPro.Web\common\PageBase.cs:行号 135
- 在 System.Web.UI.Control.InitRecursive(Control namingContainer)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/10/2023 11:27:31
-出错文件:http://localhost:5001/default.aspx
-IP地址:::1
-
-出错时间:03/10/2023 11:27:31
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.Common.ReportPrint.ExReportPrint.Page_Load(Object sender, EventArgs e) 位置 D:\MyProject\ZHNew\HJGL_ZH\HJGL_ZH\FineUIPro.Web\common\ReportPrint\ExReportPrint.aspx.cs:行号 25
- 在 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/10/2023 16:36:34
-出错文件:http://localhost:5001/Common/ReportPrint/ExReportPrint.aspx?ispop=1&reportId=118&replaceParameter=4e5121e1-146a-4093-8c89-95e195bd68d4%7C5711275b-dc2e-407a-9cba-127046b08a55%7C0%7C%EF%BF%BD%EF%BF%BD219%EF%BF%BD%EF%BF%BD7.04%7C1%7C20
-IP地址:::1
-操作人员:管理员
-
-出错时间:03/10/2023 16:36:34
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.Common.ReportPrint.ExReportPrint.Page_Load(Object sender, EventArgs e) 位置 D:\MyProject\ZHNew\HJGL_ZH\HJGL_ZH\FineUIPro.Web\common\ReportPrint\ExReportPrint.aspx.cs:行号 25
- 在 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/10/2023 16:44:30
-出错文件:http://localhost:5001/Common/ReportPrint/ExReportPrint.aspx?ispop=1&reportId=118&replaceParameter=4e5121e1-146a-4093-8c89-95e195bd68d4%7C5711275b-dc2e-407a-9cba-127046b08a55%7C0%7C%CE%A6219%C3%977.04%7C1%7C20
-IP地址:::1
-操作人员:管理员
-
-出错时间:03/10/2023 16:44:30
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.Common.ReportPrint.ExReportPrint.Page_Load(Object sender, EventArgs e) 位置 D:\MyProject\ZHNew\HJGL_ZH\HJGL_ZH\FineUIPro.Web\common\ReportPrint\ExReportPrint.aspx.cs:行号 25
- 在 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/10/2023 16:49:06
-出错文件:http://localhost:5001/Common/ReportPrint/ExReportPrint.aspx?ispop=1&reportId=118&replaceParameter=4e5121e1-146a-4093-8c89-95e195bd68d4%7C5711275b-dc2e-407a-9cba-127046b08a55%7C0%7C%CE%A6219%C3%977.04%7C1%7C20
-IP地址:::1
-操作人员:管理员
-
-出错时间:03/10/2023 16:49:06
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.Common.ReportPrint.ExReportPrint.Page_Load(Object sender, EventArgs e) 位置 D:\MyProject\ZHNew\HJGL_ZH\HJGL_ZH\FineUIPro.Web\common\ReportPrint\ExReportPrint.aspx.cs:行号 25
- 在 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/10/2023 16:53:14
-出错文件:http://localhost:5001/Common/ReportPrint/ExReportPrint.aspx?ispop=1&reportId=118&replaceParameter=4e5121e1-146a-4093-8c89-95e195bd68d4%7C5711275b-dc2e-407a-9cba-127046b08a55%7C0%7C%CE%A6219%C3%977.04%7C1%7C20
-IP地址:::1
-操作人员:管理员
-
-出错时间:03/10/2023 16:53:14
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.Common.ReportPrint.ExReportPrint.Page_Load(Object sender, EventArgs e) 位置 D:\MyProject\ZHNew\HJGL_ZH\HJGL_ZH\FineUIPro.Web\common\ReportPrint\ExReportPrint.aspx.cs:行号 25
- 在 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/10/2023 16:57:09
-出错文件:http://localhost:5001/Common/ReportPrint/ExReportPrint.aspx?ispop=1&reportId=118&replaceParameter=806a1686-8114-4374-a042-ed9e90a02477%7C81c0592a-258b-4077-bbe5-ba8c80e5e602%7C0%7C%CE%A645%C3%975%7C1%7C06Cr18Ni11Ti%7C86be016c-d261-4fe7-9957-56bd9f4c0172%7C86be016c-d261-4fe7-9957-56bd9f4c0172%7C20bff8de-6697-4f9c-b2c0-fe1d636340c3&projectId=0
-IP地址:::1
-操作人员:管理员
-
-出错时间:03/10/2023 16:57:09
-
-
-错误信息开始=====>
-错误类型:FormatException
-错误信息:输入字符串的格式不正确。
-错误堆栈:
- 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)
- 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info)
- 在 System.Convert.ToInt32(String value)
- 在 FineUIPro.Web.WeldMat.UsingSentMat.UsingMat.btnOnekeyReturnMat_Click(Object sender, EventArgs e) 位置 D:\MyNewProject\ZHJA\HJGL_ZH\FineUIPro.Web\WeldMat\UsingSentMat\UsingMat.aspx.cs:行号 431
- 在 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/16/2023 15:27:17
-出错文件:http://localhost:5001/WeldMat/UsingSentMat/UsingMat.aspx?welderCode=2410K
-IP地址:::1
-操作人员:康井圣
-
-出错时间:03/16/2023 15:27:17
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.WeldMat.UsingSentMat.UsingMat.btnOnekeyReturnMat_Click(Object sender, EventArgs e) 位置 D:\MyNewProject\ZHJA\HJGL_ZH\FineUIPro.Web\WeldMat\UsingSentMat\UsingMat.aspx.cs:行号 434
- 在 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/16/2023 15:30:23
-出错文件:http://localhost:5001/WeldMat/UsingSentMat/UsingMat.aspx?welderCode=2410K
-IP地址:::1
-操作人员:康井圣
-
-出错时间:03/16/2023 15:30:23
-
-
-错误信息开始=====>
-错误类型:Win32Exception
-错误信息:没有应用程序与此操作的指定文件有关联。
-错误堆栈:
- 在 System.Diagnostics.Process.StartWithShellExecuteEx(ProcessStartInfo startInfo)
- 在 System.Diagnostics.Process.Start()
- 在 FineUIPro.Web.PersonManage.SeeQRImage.btnSave_Click(Object sender, EventArgs e) 位置 D:\MyNewProject\ZHJA\HJGL_ZH\FineUIPro.Web\common\WelderManage\SeeQRImage.aspx.cs:行号 30
- 在 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/16/2023 16:32:09
-出错文件:http://localhost/hjgl/common/WelderManage/SeeQRImage.aspx?WelderId=03503846-0017-4C63-8BD1-E0CD265F1A36
-IP地址:::1
-操作人员:管理员
-
-出错时间:03/16/2023 16:32:09
-
-
-错误信息开始=====>
-错误类型:WebException
-错误信息:未能解析此远程名称: 'hjgl.izpje.com'
-错误堆栈:
- 在 System.Net.HttpWebRequest.GetResponse()
- 在 FineUIPro.Web.Global.Application_End(Object sender, EventArgs e) 位置 D:\MyNewProject\ZHJA\HJGL_ZH\FineUIPro.Web\Global.asax.cs:行号 507
-出错时间:03/16/2023 17:18:45
-
-出错时间:03/16/2023 17:18:45
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:d:\MyNewProject\ZHJA\HJGL_ZH\FineUIPro.Web\WeldMat\UsingSentMat\ShowStockIn.aspx(91): error CS1061: “ASP.weldmat_usingsentmat_showstockin_aspx”不包含“Window3_Close”的定义,并且找不到可接受类型为“ASP.weldmat_usingsentmat_showstockin_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)
-出错时间:03/20/2023 17:09:51
-出错文件:http://localhost:5001/WeldMat/UsingSentMat/ShowStockIn.aspx?UsingPlanId=c43760a7-34bf-4774-97b0-33108135d1a0
-IP地址:::1
-
-出错时间:03/20/2023 17:09:51
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:INSERT 语句与 FOREIGN KEY 约束"FK_Weld_UsingMat_Weld_Storeman"冲突。该冲突发生于数据库"HJGLDB_ZHJAN",表"dbo.Weld_Storeman", column 'StoremanId'。
-语句已终止。
-错误堆栈:
- 在 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.DynamicInsert(TrackedObject item)
- 在 System.Data.Linq.ChangeDirector.StandardChangeDirector.Insert(TrackedObject item)
- 在 System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode)
- 在 System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode)
- 在 System.Data.Linq.DataContext.SubmitChanges()
- 在 BLL.UsingMatService.AddUsingMat(Weld_UsingMat usingMat) 位置 D:\MyNewProject\ZHJA\HJGL_ZH\BLL\WeldMat\UsingSentMat\UsingMatService.cs:行号 46
- 在 FineUIPro.Web.WeldMat.UsingSentMat.ShowStockIn.btnSure_Click(Object sender, EventArgs e) 位置 D:\MyNewProject\ZHJA\HJGL_ZH\FineUIPro.Web\WeldMat\UsingSentMat\ShowStockIn.aspx.cs:行号 207
- 在 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/20/2023 17:13:41
-出错文件:http://localhost:5001/WeldMat/UsingSentMat/ShowStockIn.aspx?UsingPlanId=2bc0734c-0fc9-43c8-a533-fda9dc46e3d2
-IP地址:::1
-操作人员:夏春玲
-
-出错时间:03/20/2023 17:13:41
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:INSERT 语句与 FOREIGN KEY 约束"FK_Weld_UsingMat_Weld_Storeman"冲突。该冲突发生于数据库"HJGLDB_ZHJAN",表"dbo.Weld_Storeman", column 'StoremanId'。
-语句已终止。
-错误堆栈:
- 在 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.DynamicInsert(TrackedObject item)
- 在 System.Data.Linq.ChangeDirector.StandardChangeDirector.Insert(TrackedObject item)
- 在 System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode)
- 在 System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode)
- 在 System.Data.Linq.DataContext.SubmitChanges()
- 在 BLL.UsingMatService.AddUsingMat(Weld_UsingMat usingMat) 位置 D:\MyNewProject\ZHJA\HJGL_ZH\BLL\WeldMat\UsingSentMat\UsingMatService.cs:行号 46
- 在 FineUIPro.Web.WeldMat.UsingSentMat.ShowStockIn.btnSure_Click(Object sender, EventArgs e) 位置 D:\MyNewProject\ZHJA\HJGL_ZH\FineUIPro.Web\WeldMat\UsingSentMat\ShowStockIn.aspx.cs:行号 210
- 在 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/20/2023 17:20:58
-出错文件:http://localhost:5001/WeldMat/UsingSentMat/ShowStockIn.aspx?UsingPlanId=2bc0734c-0fc9-43c8-a533-fda9dc46e3d2
-IP地址:::1
-操作人员:夏春玲
-
-出错时间:03/20/2023 17:20:58
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:INSERT 语句与 FOREIGN KEY 约束"FK_Weld_UsingMat_Weld_Storeman"冲突。该冲突发生于数据库"HJGLDB_ZHJAN",表"dbo.Weld_Storeman", column 'StoremanId'。
-语句已终止。
-错误堆栈:
- 在 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.DynamicInsert(TrackedObject item)
- 在 System.Data.Linq.ChangeDirector.StandardChangeDirector.Insert(TrackedObject item)
- 在 System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode)
- 在 System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode)
- 在 System.Data.Linq.DataContext.SubmitChanges()
- 在 BLL.UsingMatService.AddUsingMat(Weld_UsingMat usingMat) 位置 D:\MyNewProject\ZHJA\HJGL_ZH\BLL\WeldMat\UsingSentMat\UsingMatService.cs:行号 46
- 在 FineUIPro.Web.WeldMat.UsingSentMat.ShowStockIn.btnSure_Click(Object sender, EventArgs e) 位置 D:\MyNewProject\ZHJA\HJGL_ZH\FineUIPro.Web\WeldMat\UsingSentMat\ShowStockIn.aspx.cs:行号 215
- 在 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/20/2023 17:24:48
-出错文件:http://localhost:5001/WeldMat/UsingSentMat/ShowStockIn.aspx?UsingPlanId=2bc0734c-0fc9-43c8-a533-fda9dc46e3d2
-IP地址:::1
-操作人员:夏春玲
-
-出错时间:03/20/2023 17:24:48
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:INSERT 语句与 FOREIGN KEY 约束"FK_Weld_UsingMat_Weld_Storeman"冲突。该冲突发生于数据库"HJGLDB_ZHJAN",表"dbo.Weld_Storeman", column 'StoremanId'。
-语句已终止。
-错误堆栈:
- 在 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.DynamicInsert(TrackedObject item)
- 在 System.Data.Linq.ChangeDirector.StandardChangeDirector.Insert(TrackedObject item)
- 在 System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode)
- 在 System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode)
- 在 System.Data.Linq.DataContext.SubmitChanges()
- 在 BLL.UsingMatService.AddUsingMat(Weld_UsingMat usingMat) 位置 D:\MyNewProject\ZHJA\HJGL_ZH\BLL\WeldMat\UsingSentMat\UsingMatService.cs:行号 46
- 在 FineUIPro.Web.WeldMat.UsingSentMat.ShowStockIn.btnSure_Click(Object sender, EventArgs e) 位置 D:\MyNewProject\ZHJA\HJGL_ZH\FineUIPro.Web\WeldMat\UsingSentMat\ShowStockIn.aspx.cs:行号 215
- 在 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/20/2023 17:24:53
-出错文件:http://localhost:5001/WeldMat/UsingSentMat/ShowStockIn.aspx?UsingPlanId=2bc0734c-0fc9-43c8-a533-fda9dc46e3d2
-IP地址:::1
-操作人员:夏春玲
-
-出错时间:03/20/2023 17:24:53
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:INSERT 语句与 FOREIGN KEY 约束"FK_Weld_UsingMat_Weld_Storeman"冲突。该冲突发生于数据库"HJGLDB_ZHJAN",表"dbo.Weld_Storeman", column 'StoremanId'。
-语句已终止。
-错误堆栈:
- 在 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.DynamicInsert(TrackedObject item)
- 在 System.Data.Linq.ChangeDirector.StandardChangeDirector.Insert(TrackedObject item)
- 在 System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode)
- 在 System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode)
- 在 System.Data.Linq.DataContext.SubmitChanges()
- 在 BLL.UsingMatService.AddUsingMat(Weld_UsingMat usingMat) 位置 D:\MyNewProject\ZHJA\HJGL_ZH\BLL\WeldMat\UsingSentMat\UsingMatService.cs:行号 46
- 在 FineUIPro.Web.WeldMat.UsingSentMat.ShowStockIn.btnSure_Click(Object sender, EventArgs e) 位置 D:\MyNewProject\ZHJA\HJGL_ZH\FineUIPro.Web\WeldMat\UsingSentMat\ShowStockIn.aspx.cs:行号 215
- 在 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/20/2023 17:26:04
-出错文件:http://localhost:5001/WeldMat/UsingSentMat/ShowStockIn.aspx?UsingPlanId=2bc0734c-0fc9-43c8-a533-fda9dc46e3d2
-IP地址:::1
-操作人员:夏春玲
-
-出错时间:03/20/2023 17:26:04
-
-
-错误信息开始=====>
-错误类型:FormatException
-错误信息:输入字符串的格式不正确。
-错误堆栈:
- 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)
- 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info)
- 在 System.Convert.ToInt32(String value)
- 在 FineUIPro.Web.HJGL.CheckManage.RTReportEdit.Page_Load(Object sender, EventArgs e) 位置 D:\MyProject\ZHNew\HJGL_ZH\HJGL_ZH\FineUIPro.Web\HJGL\CheckManage\RTReportEdit.aspx.cs:行号 403
- 在 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/2023 16:21:49
-出错文件:http://localhost:5001/HJGL/CheckManage/RTReportEdit.aspx?reportPrintId=8d591907-2152-4f30-bed2-4810d2fabc04%7c%CE%A6508%C3%979.53%7c20d2cbca-8b3d-434b-b1c1-181796986fa5%7cc1f57f97-d8af-415a-87eb-fdc0cbc26627%7c3G%2c7G&STE_ID=d8096874-bd0a-48c1-bb31-57dc26be92fa&STE_ID2=d8096874-bd0a-48c1-bb31-57dc26be92fa&WME_ID=46520d5d-6104-48d0-900f-c4e56c90142e
-IP地址:::1
-操作人员:管理员
-
-出错时间:03/29/2023 16:21:49
-
-
-错误信息开始=====>
-错误类型:FormatException
-错误信息:输入字符串的格式不正确。
-错误堆栈:
- 在 System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)
- 在 System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info)
- 在 System.Convert.ToInt32(String value)
- 在 FineUIPro.Web.HJGL.CheckManage.RTReportEdit.Page_Load(Object sender, EventArgs e) 位置 D:\MyProject\ZHNew\HJGL_ZH\HJGL_ZH\FineUIPro.Web\HJGL\CheckManage\RTReportEdit.aspx.cs:行号 403
- 在 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/30/2023 09:27:40
-出错文件:http://localhost:5001/HJGL/CheckManage/RTReportEdit.aspx?reportPrintId=dd47e7e1-58da-49e9-8372-e8af7167cc3c%7c%CE%A6219.1%C3%978.18%7c20d2cbca-8b3d-434b-b1c1-181796986fa5%7c05eff98b-dfa9-4826-ab79-6a42a41ab81e%7c1%2c3%2c19%2c22%2c56%2c57%2c80&STE_ID=58c720e8-719d-40ab-bcc1-f5425af71c77&STE_ID2=58c720e8-719d-40ab-bcc1-f5425af71c77&WME_ID=46520d5d-6104-48d0-900f-c4e56c90142e
-IP地址:::1
-操作人员:管理员
-
-出错时间:03/30/2023 09:27:40
-
-
-错误信息开始=====>
-错误类型:WebException
-错误信息:未能解析此远程名称: 'hjgl.izpje.com'
-错误堆栈:
- 在 System.Net.HttpWebRequest.GetResponse()
- 在 FineUIPro.Web.Global.Application_End(Object sender, EventArgs e) 位置 D:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\Global.asax.cs:行号 507
-出错时间:04/09/2023 17:37:08
-
-出错时间:04/09/2023 17:37:08
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HJGL.HotProessManage.HotProessTrustEdit.BindGrid(List`1 lists) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotProessManage\HotProessTrustEdit.aspx.cs:行号 213
- 在 FineUIPro.Web.HJGL.HotProessManage.HotProessTrustEdit.Window1_Close(Object sender, WindowCloseEventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotProessManage\HotProessTrustEdit.aspx.cs:行号 421
- 在 FineUIPro.Window.OnClose(WindowCloseEventArgs e)
- 在 (Window , WindowCloseEventArgs )
- 在 FineUIPro.Window.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)
-出错时间:05/08/2023 12:50:33
-出错文件:http://localhost:5001/HJGL/HotProessManage/HotProessTrustEdit.aspx?HotProessTrustId=a80f393a-838f-492f-a7ac-663866d39264
-IP地址:::1
-操作人员:管理员
-
-出错时间:05/08/2023 12:50:33
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HJGL.HotProessManage.HotProessTrustEdit.BindGrid(List`1 lists) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotProessManage\HotProessTrustEdit.aspx.cs:行号 213
- 在 FineUIPro.Web.HJGL.HotProessManage.HotProessTrustEdit.Window1_Close(Object sender, WindowCloseEventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotProessManage\HotProessTrustEdit.aspx.cs:行号 421
- 在 FineUIPro.Window.OnClose(WindowCloseEventArgs e)
- 在 (Window , WindowCloseEventArgs )
- 在 FineUIPro.Window.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)
-出错时间:05/08/2023 12:51:50
-出错文件:http://localhost:5001/HJGL/HotProessManage/HotProessTrustEdit.aspx?HotProessTrustId=a80f393a-838f-492f-a7ac-663866d39264
-IP地址:::1
-操作人员:管理员
-
-出错时间:05/08/2023 12:51:50
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HJGL.HotProessManage.HotProessTrustEdit.BindGrid(List`1 lists) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotProessManage\HotProessTrustEdit.aspx.cs:行号 213
- 在 FineUIPro.Web.HJGL.HotProessManage.HotProessTrustEdit.Window1_Close(Object sender, WindowCloseEventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotProessManage\HotProessTrustEdit.aspx.cs:行号 421
- 在 FineUIPro.Window.OnClose(WindowCloseEventArgs e)
- 在 (Window , WindowCloseEventArgs )
- 在 FineUIPro.Window.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)
-出错时间:05/08/2023 12:52:24
-出错文件:http://localhost:5001/HJGL/HotProessManage/HotProessTrustEdit.aspx?HotProessTrustId=a80f393a-838f-492f-a7ac-663866d39264
-IP地址:::1
-操作人员:管理员
-
-出错时间:05/08/2023 12:52:24
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HJGL.HotProessManage.HotProessTrustEdit.BindGrid(List`1 lists) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotProessManage\HotProessTrustEdit.aspx.cs:行号 213
- 在 FineUIPro.Web.HJGL.HotProessManage.HotProessTrustEdit.Window1_Close(Object sender, WindowCloseEventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotProessManage\HotProessTrustEdit.aspx.cs:行号 421
- 在 FineUIPro.Window.OnClose(WindowCloseEventArgs e)
- 在 (Window , WindowCloseEventArgs )
- 在 FineUIPro.Window.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)
-出错时间:05/08/2023 12:59:34
-出错文件:http://localhost:5001/HJGL/HotProessManage/HotProessTrustEdit.aspx?HotProessTrustId=a80f393a-838f-492f-a7ac-663866d39264
-IP地址:::1
-操作人员:管理员
-
-出错时间:05/08/2023 12:59:34
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:用户 'sa' 登录失败。原因: 该帐户的密码已过期。
-错误堆栈:
- 在 System.Data.SqlClient.SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, SqlCredential credential, Object providerInfo, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance, SqlConnectionString userConnectionOptions, SessionData reconnectSessionData, DbConnectionPool pool, String accessToken, Boolean applyTransientFaultHandling, SqlAuthenticationProviderManager sqlAuthProviderManager)
- 在 System.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, DbConnectionPoolKey poolKey, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection, DbConnectionOptions userOptions)
- 在 System.Data.ProviderBase.DbConnectionFactory.CreatePooledConnection(DbConnectionPool pool, DbConnection owningObject, DbConnectionOptions options, DbConnectionPoolKey poolKey, DbConnectionOptions userOptions)
- 在 System.Data.ProviderBase.DbConnectionPool.CreateObject(DbConnection owningObject, DbConnectionOptions userOptions, DbConnectionInternal oldConnection)
- 在 System.Data.ProviderBase.DbConnectionPool.UserCreateRequest(DbConnection owningObject, DbConnectionOptions userOptions, DbConnectionInternal oldConnection)
- 在 System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, UInt32 waitForMultipleObjectsTimeout, Boolean allowCreate, Boolean onlyOneCheckConnection, DbConnectionOptions userOptions, DbConnectionInternal& connection)
- 在 System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal& connection)
- 在 System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection)
- 在 System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
- 在 System.Data.ProviderBase.DbConnectionClosed.TryOpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
- 在 System.Data.SqlClient.SqlConnection.TryOpenInner(TaskCompletionSource`1 retry)
- 在 System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry)
- 在 System.Data.SqlClient.SqlConnection.Open()
- 在 System.Data.Linq.SqlClient.SqlConnectionManager.UseConnection(IConnectionUser user)
- 在 System.Data.Linq.SqlClient.SqlProvider.get_IsSqlCe()
- 在 System.Data.Linq.SqlClient.SqlProvider.InitializeProviderMode()
- 在 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)
- 在 BLL.Sys_UserService.UserLogOn(String account, String password, Boolean rememberMe, Page page) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\BLL\Common\SysManage\Sys_UserService.cs:行号 41
- 在 FineUIPro.Web.Login.btnLogin_Click(Object sender, EventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\Login.aspx.cs:行号 57
- 在 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)
-出错时间:05/12/2023 16:19:22
-出错文件:http://localhost:5001/Login.aspx
-IP地址:::1
-
-出错时间:05/12/2023 16:19:22
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:用户 'sa' 登录失败。原因: 该帐户的密码已过期。
-错误堆栈:
- 在 System.Data.SqlClient.SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, SqlCredential credential, Object providerInfo, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance, SqlConnectionString userConnectionOptions, SessionData reconnectSessionData, DbConnectionPool pool, String accessToken, Boolean applyTransientFaultHandling, SqlAuthenticationProviderManager sqlAuthProviderManager)
- 在 System.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, DbConnectionPoolKey poolKey, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection, DbConnectionOptions userOptions)
- 在 System.Data.ProviderBase.DbConnectionFactory.CreatePooledConnection(DbConnectionPool pool, DbConnection owningObject, DbConnectionOptions options, DbConnectionPoolKey poolKey, DbConnectionOptions userOptions)
- 在 System.Data.ProviderBase.DbConnectionPool.CreateObject(DbConnection owningObject, DbConnectionOptions userOptions, DbConnectionInternal oldConnection)
- 在 System.Data.ProviderBase.DbConnectionPool.UserCreateRequest(DbConnection owningObject, DbConnectionOptions userOptions, DbConnectionInternal oldConnection)
- 在 System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, UInt32 waitForMultipleObjectsTimeout, Boolean allowCreate, Boolean onlyOneCheckConnection, DbConnectionOptions userOptions, DbConnectionInternal& connection)
- 在 System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal& connection)
- 在 System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection)
- 在 System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
- 在 System.Data.ProviderBase.DbConnectionClosed.TryOpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
- 在 System.Data.SqlClient.SqlConnection.TryOpenInner(TaskCompletionSource`1 retry)
- 在 System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry)
- 在 System.Data.SqlClient.SqlConnection.Open()
- 在 System.Data.Linq.SqlClient.SqlConnectionManager.UseConnection(IConnectionUser user)
- 在 System.Data.Linq.SqlClient.SqlProvider.get_IsSqlCe()
- 在 System.Data.Linq.SqlClient.SqlProvider.InitializeProviderMode()
- 在 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)
- 在 BLL.Sys_UserService.UserLogOn(String account, String password, Boolean rememberMe, Page page) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\BLL\Common\SysManage\Sys_UserService.cs:行号 41
- 在 FineUIPro.Web.Login.btnLogin_Click(Object sender, EventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\Login.aspx.cs:行号 57
- 在 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)
-出错时间:05/12/2023 16:19:56
-出错文件:http://localhost:5001/Login.aspx
-IP地址:::1
-
-出错时间:05/12/2023 16:19:56
-
-
-错误信息开始=====>
-错误类型:ChangeConflictException
-错误信息:找不到行或行已更改。
-错误堆栈:
- 在 System.Data.Linq.ChangeProcessor.SubmitChanges(ConflictMode failureMode)
- 在 System.Data.Linq.DataContext.SubmitChanges(ConflictMode failureMode)
- 在 System.Data.Linq.DataContext.SubmitChanges()
- 在 BLL.HJGL_WelderQualifiedProjectService.UpdateOAWelderQue(Int64 welder_ID, Boolean isSync) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\BLL\HJGL\PersonManage\HJGL_WelderQualifiedProjectService.cs:行号 159
- 在 FineUIPro.Web.Welder.WelderManage.btnSync_Click(Object sender, EventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\Welder\WelderManage.aspx.cs:行号 282
- 在 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)
-出错时间:06/13/2023 15:03:37
-出错文件:http://localhost:5001/Welder/WelderManage.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:06/13/2023 15:03:37
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:用户 'sa' 登录失败。原因: 该帐户的密码已过期。
-错误堆栈:
- 在 System.Data.SqlClient.SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, SqlCredential credential, Object providerInfo, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance, SqlConnectionString userConnectionOptions, SessionData reconnectSessionData, DbConnectionPool pool, String accessToken, Boolean applyTransientFaultHandling, SqlAuthenticationProviderManager sqlAuthProviderManager)
- 在 System.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, DbConnectionPoolKey poolKey, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection, DbConnectionOptions userOptions)
- 在 System.Data.ProviderBase.DbConnectionFactory.CreatePooledConnection(DbConnectionPool pool, DbConnection owningObject, DbConnectionOptions options, DbConnectionPoolKey poolKey, DbConnectionOptions userOptions)
- 在 System.Data.ProviderBase.DbConnectionPool.CreateObject(DbConnection owningObject, DbConnectionOptions userOptions, DbConnectionInternal oldConnection)
- 在 System.Data.ProviderBase.DbConnectionPool.UserCreateRequest(DbConnection owningObject, DbConnectionOptions userOptions, DbConnectionInternal oldConnection)
- 在 System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, UInt32 waitForMultipleObjectsTimeout, Boolean allowCreate, Boolean onlyOneCheckConnection, DbConnectionOptions userOptions, DbConnectionInternal& connection)
- 在 System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal& connection)
- 在 System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection)
- 在 System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
- 在 System.Data.ProviderBase.DbConnectionClosed.TryOpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
- 在 System.Data.SqlClient.SqlConnection.TryOpenInner(TaskCompletionSource`1 retry)
- 在 System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry)
- 在 System.Data.SqlClient.SqlConnection.Open()
- 在 System.Data.Linq.SqlClient.SqlConnectionManager.UseConnection(IConnectionUser user)
- 在 System.Data.Linq.SqlClient.SqlProvider.get_IsSqlCe()
- 在 System.Data.Linq.SqlClient.SqlProvider.InitializeProviderMode()
- 在 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)
- 在 BLL.Sys_UserService.UserLogOn(String account, String password, Boolean rememberMe, Page page) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\BLL\Common\SysManage\Sys_UserService.cs:行号 41
- 在 FineUIPro.Web.Login.btnLogin_Click(Object sender, EventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\Login.aspx.cs:行号 57
- 在 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)
-出错时间:06/28/2023 10:08:20
-出错文件:http://localhost:5001/Login.aspx
-IP地址:::1
-
-出错时间:06/28/2023 10:08:20
-
-
-错误信息开始=====>
-错误类型:IndexOutOfRangeException
-错误信息:无法找到列 RTReport。
-错误堆栈:
- 在 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:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\common\PageBase.cs:行号 328
- 在 FineUIPro.Web.HJGL.CheckManage.CheckResultsSummary.BindGrid() 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\CheckManage\CheckResultsSummary.aspx.cs:行号 153
- 在 FineUIPro.Web.HJGL.CheckManage.CheckResultsSummary.tvControlItem_NodeCommand(Object sender, TreeCommandEventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\CheckManage\CheckResultsSummary.aspx.cs:行号 124
- 在 FineUIPro.Tree.OnNodeCommand(TreeCommandEventArgs e)
- 在 (Tree , TreeCommandEventArgs )
- 在 FineUIPro.Tree.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)
-出错时间:06/28/2023 16:01:01
-出错文件:http://localhost:5001/HJGL/CheckManage/CheckResultsSummary.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:06/28/2023 16:01:01
-
-
-错误信息开始=====>
-错误类型:IndexOutOfRangeException
-错误信息:无法找到列 RTReport。
-错误堆栈:
- 在 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:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\common\PageBase.cs:行号 328
- 在 FineUIPro.Web.HJGL.CheckManage.CheckResultsSummary.BindGrid() 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\CheckManage\CheckResultsSummary.aspx.cs:行号 153
- 在 FineUIPro.Web.HJGL.CheckManage.CheckResultsSummary.tvControlItem_NodeCommand(Object sender, TreeCommandEventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\CheckManage\CheckResultsSummary.aspx.cs:行号 124
- 在 FineUIPro.Tree.OnNodeCommand(TreeCommandEventArgs e)
- 在 (Tree , TreeCommandEventArgs )
- 在 FineUIPro.Tree.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)
-出错时间:06/28/2023 16:04:13
-出错文件:http://localhost:5001/HJGL/CheckManage/CheckResultsSummary.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:06/28/2023 16:04:13
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:用户 'sa' 登录失败。原因: 该帐户的密码已过期。
-错误堆栈:
- 在 System.Data.SqlClient.SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, SqlCredential credential, Object providerInfo, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance, SqlConnectionString userConnectionOptions, SessionData reconnectSessionData, DbConnectionPool pool, String accessToken, Boolean applyTransientFaultHandling, SqlAuthenticationProviderManager sqlAuthProviderManager)
- 在 System.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, DbConnectionPoolKey poolKey, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection, DbConnectionOptions userOptions)
- 在 System.Data.ProviderBase.DbConnectionFactory.CreatePooledConnection(DbConnectionPool pool, DbConnection owningObject, DbConnectionOptions options, DbConnectionPoolKey poolKey, DbConnectionOptions userOptions)
- 在 System.Data.ProviderBase.DbConnectionPool.CreateObject(DbConnection owningObject, DbConnectionOptions userOptions, DbConnectionInternal oldConnection)
- 在 System.Data.ProviderBase.DbConnectionPool.UserCreateRequest(DbConnection owningObject, DbConnectionOptions userOptions, DbConnectionInternal oldConnection)
- 在 System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, UInt32 waitForMultipleObjectsTimeout, Boolean allowCreate, Boolean onlyOneCheckConnection, DbConnectionOptions userOptions, DbConnectionInternal& connection)
- 在 System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal& connection)
- 在 System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection)
- 在 System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
- 在 System.Data.ProviderBase.DbConnectionClosed.TryOpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
- 在 System.Data.SqlClient.SqlConnection.TryOpenInner(TaskCompletionSource`1 retry)
- 在 System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry)
- 在 System.Data.SqlClient.SqlConnection.Open()
- 在 System.Data.Linq.SqlClient.SqlConnectionManager.UseConnection(IConnectionUser user)
- 在 System.Data.Linq.SqlClient.SqlProvider.get_IsSqlCe()
- 在 System.Data.Linq.SqlClient.SqlProvider.InitializeProviderMode()
- 在 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)
- 在 BLL.Sys_UserService.UserLogOn(String account, String password, Boolean rememberMe, Page page) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\BLL\Common\SysManage\Sys_UserService.cs:行号 41
- 在 FineUIPro.Web.Login.btnLogin_Click(Object sender, EventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\Login.aspx.cs:行号 57
- 在 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)
-出错时间:08/09/2023 10:28:57
-出错文件:http://localhost:5001/Login.aspx
-IP地址:::1
-
-出错时间:08/09/2023 10:28:57
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:用户 'sa' 登录失败。原因: 该帐户的密码已过期。
-错误堆栈:
- 在 System.Data.SqlClient.SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, SqlCredential credential, Object providerInfo, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance, SqlConnectionString userConnectionOptions, SessionData reconnectSessionData, DbConnectionPool pool, String accessToken, Boolean applyTransientFaultHandling, SqlAuthenticationProviderManager sqlAuthProviderManager)
- 在 System.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, DbConnectionPoolKey poolKey, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection, DbConnectionOptions userOptions)
- 在 System.Data.ProviderBase.DbConnectionFactory.CreatePooledConnection(DbConnectionPool pool, DbConnection owningObject, DbConnectionOptions options, DbConnectionPoolKey poolKey, DbConnectionOptions userOptions)
- 在 System.Data.ProviderBase.DbConnectionPool.CreateObject(DbConnection owningObject, DbConnectionOptions userOptions, DbConnectionInternal oldConnection)
- 在 System.Data.ProviderBase.DbConnectionPool.UserCreateRequest(DbConnection owningObject, DbConnectionOptions userOptions, DbConnectionInternal oldConnection)
- 在 System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, UInt32 waitForMultipleObjectsTimeout, Boolean allowCreate, Boolean onlyOneCheckConnection, DbConnectionOptions userOptions, DbConnectionInternal& connection)
- 在 System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal& connection)
- 在 System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection)
- 在 System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
- 在 System.Data.ProviderBase.DbConnectionClosed.TryOpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
- 在 System.Data.SqlClient.SqlConnection.TryOpenInner(TaskCompletionSource`1 retry)
- 在 System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry)
- 在 System.Data.SqlClient.SqlConnection.Open()
- 在 System.Data.Linq.SqlClient.SqlConnectionManager.UseConnection(IConnectionUser user)
- 在 System.Data.Linq.SqlClient.SqlProvider.get_IsSqlCe()
- 在 System.Data.Linq.SqlClient.SqlProvider.InitializeProviderMode()
- 在 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)
- 在 BLL.Sys_UserService.UserLogOn(String account, String password, Boolean rememberMe, Page page) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\BLL\Common\SysManage\Sys_UserService.cs:行号 41
- 在 FineUIPro.Web.Login.btnLogin_Click(Object sender, EventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\Login.aspx.cs:行号 57
- 在 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)
-出错时间:08/09/2023 10:29:35
-出错文件:http://localhost:5001/Login.aspx
-IP地址:::1
-
-出错时间:08/09/2023 10:29:35
-
-
-错误信息开始=====>
-错误类型:ArgumentOutOfRangeException
-错误信息:要添加的值超出范围。
-参数名: value
-错误堆栈:
- 在 System.DateTime.Add(Double value, Int32 scale)
- 在 System.DateTime.AddSeconds(Double value)
- 在 FineUIPro.Web.WeldMat.UsingSentMat.UsingMat.ConvertUnixTimeStampToDateTime(String unixTimeStamp, Int32 unit) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\WeldMat\UsingSentMat\UsingMat.aspx.cs:行号 1152
- 在 FineUIPro.Web.WeldMat.UsingSentMat.UsingMat.Page_Load(Object sender, EventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\WeldMat\UsingSentMat\UsingMat.aspx.cs:行号 75
- 在 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)
-出错时间:09/01/2023 10:28:56
-出错文件:http://localhost:5001/WeldMat/UsingSentMat/UsingMat.aspx?welderQRCode=34122119890312111X$1690166082388
-IP地址:::1
-操作人员:管理员
-
-出错时间:09/01/2023 10:28:56
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.Common.ReportPrint.CalculateChinaEx.Page_Load(Object sender, EventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\common\ReportPrint\CalculateChinaEx.aspx.cs:行号 171
- 在 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/06/2023 14:44:42
-出错文件:http://localhost/zhhj/Common/ReportPrint/CalculateChinaEx.aspx?func=GetSqlResult&dtype=6&sql=HJGL_spHotProessItem%20'f4c6809b-1047-4d0d-a1d1-c0bfca4e8835'%2C'1'&sql2=undefined&reportId=151
-IP地址:::1
-操作人员:管理员
-
-出错时间:09/06/2023 14:44:42
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:用户 'sa' 登录失败。原因: 该帐户的密码已过期。
-错误堆栈:
- 在 System.Data.SqlClient.SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, SqlCredential credential, Object providerInfo, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance, SqlConnectionString userConnectionOptions, SessionData reconnectSessionData, DbConnectionPool pool, String accessToken, Boolean applyTransientFaultHandling, SqlAuthenticationProviderManager sqlAuthProviderManager)
- 在 System.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, DbConnectionPoolKey poolKey, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection, DbConnectionOptions userOptions)
- 在 System.Data.ProviderBase.DbConnectionFactory.CreatePooledConnection(DbConnectionPool pool, DbConnection owningObject, DbConnectionOptions options, DbConnectionPoolKey poolKey, DbConnectionOptions userOptions)
- 在 System.Data.ProviderBase.DbConnectionPool.CreateObject(DbConnection owningObject, DbConnectionOptions userOptions, DbConnectionInternal oldConnection)
- 在 System.Data.ProviderBase.DbConnectionPool.UserCreateRequest(DbConnection owningObject, DbConnectionOptions userOptions, DbConnectionInternal oldConnection)
- 在 System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, UInt32 waitForMultipleObjectsTimeout, Boolean allowCreate, Boolean onlyOneCheckConnection, DbConnectionOptions userOptions, DbConnectionInternal& connection)
- 在 System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal& connection)
- 在 System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection)
- 在 System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
- 在 System.Data.ProviderBase.DbConnectionClosed.TryOpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
- 在 System.Data.SqlClient.SqlConnection.TryOpenInner(TaskCompletionSource`1 retry)
- 在 System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry)
- 在 System.Data.SqlClient.SqlConnection.Open()
- 在 System.Data.Linq.SqlClient.SqlConnectionManager.UseConnection(IConnectionUser user)
- 在 System.Data.Linq.SqlClient.SqlProvider.get_IsSqlCe()
- 在 System.Data.Linq.SqlClient.SqlProvider.InitializeProviderMode()
- 在 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)
- 在 BLL.Sys_UserService.UserLogOn(String account, String password, Boolean rememberMe, Page page) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\BLL\Common\SysManage\Sys_UserService.cs:行号 41
- 在 FineUIPro.Web.Login.btnLogin_Click(Object sender, EventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\Login.aspx.cs:行号 57
- 在 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)
-出错时间:09/27/2023 08:55:50
-出错文件:http://localhost:5001/Login.aspx
-IP地址:::1
-
-出错时间:09/27/2023 08:55:50
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:DELETE 语句与 REFERENCE 约束"FK_HJGL_BO_QualityRatingRepair_HJGL_CH_RepairItem"冲突。该冲突发生于数据库"HJGLDB_ZHJAN",表"dbo.HJGL_BO_QualityRatingRepair", column 'CH_RepairItemId'。
-语句已终止。
-错误堆栈:
- 在 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()
- 在 FineUIPro.Web.HJGL.CheckManage.CheckManage.btnModify_Click(Object sender, EventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\CheckManage\CheckManage.aspx.cs:行号 509
- 在 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)
-出错时间:10/07/2023 11:02:09
-出错文件:http://localhost:5001/HJGL/CheckManage/CheckManage.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:10/07/2023 11:02:09
-
-
-错误信息开始=====>
-错误类型:ViewStateException
-错误信息:无效的视图状态。
- Client IP: ::1
- Port: 56824
- Referer: http://localhost:5001/HJGL/CheckManage/CheckManage.aspx
- Path: /HJGL/CheckManage/CheckManage.aspx
- User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36 Edg/117.0.2045.47
- ViewState: /wEdAFs+xSMj4tAYUwLgltJ00vItg+lNmK+p44AabHvGoyS36Qrp2uSpGmDSYePrRevBfQk1ITUHdiEtqXZBbvuOqN/w3FVGiCdEGT78ygGTXt/ACQLHgTV+ftPCtr4hWr6HmvcZuhEW4J6d0Tm5DAVNc2fIC0hzW4KyFGT2waQxyhL1uOrgq39m3wRCAftoorokkm7K2OnZFuqtICihq/fInjdO6bFUfsonKDNp8f0B+TyQAIWXKes/8AWoTMrtk1QgxbuIEMPMcDeergBoFThnIB0V/b5e5uepQc78ANDWSkwKdIckDLLYDHfmPH0y3lTmx/HXH/4IHhEpTOL1FyrN2gL2e7DDOnvAxxyxdLSNKt7tyWZcw89izJduEOIBy21CgU1cGR6us4mSPpPIj5vF6ouCKTkVFHwUjcw5Cq9A/wK5lj4ZXs1bSGM8f6fRAM9QoRTDzVVqYop1cBychjutFeIoXSWCCXD3tX0cUudCOf1PmjSVN1uPAvexVEV3nJTR41TOnmbnT7jtKxZHQVKc+vQOH9c6xt9jXkO7p4aqwV/kqPcPtLv1NK/r5xQvmL4lWQ1k152A7N72mGvOoomuNvrh7OqgLKRm4UmYVvG2ZdEKMvit/ckmVAOhrViNEiJc5NftK366+ndstNrspsW2K8ea/NZ0wionGSV2irn8dqhp6ltNBC4k94pOB0W4p+wfvQNZwnTTmUJRNZ...
-错误堆栈:
-
-出错时间:10/07/2023 11:03:28
-出错文件:http://localhost:5001/HJGL/CheckManage/CheckManage.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:10/07/2023 11:03:28
-
-
-错误信息开始=====>
-错误类型:ViewStateException
-错误信息:无效的视图状态。
- Client IP: ::1
- Port: 56824
- Referer: http://localhost:5001/HJGL/CheckManage/CheckManage.aspx
- Path: /HJGL/CheckManage/CheckManage.aspx
- User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36 Edg/117.0.2045.47
- ViewState: /wEdAFs+xSMj4tAYUwLgltJ00vItg+lNmK+p44AabHvGoyS36Qrp2uSpGmDSYePrRevBfQk1ITUHdiEtqXZBbvuOqN/w3FVGiCdEGT78ygGTXt/ACQLHgTV+ftPCtr4hWr6HmvcZuhEW4J6d0Tm5DAVNc2fIC0hzW4KyFGT2waQxyhL1uOrgq39m3wRCAftoorokkm7K2OnZFuqtICihq/fInjdO6bFUfsonKDNp8f0B+TyQAIWXKes/8AWoTMrtk1QgxbuIEMPMcDeergBoFThnIB0V/b5e5uepQc78ANDWSkwKdIckDLLYDHfmPH0y3lTmx/HXH/4IHhEpTOL1FyrN2gL2e7DDOnvAxxyxdLSNKt7tyWZcw89izJduEOIBy21CgU1cGR6us4mSPpPIj5vF6ouCKTkVFHwUjcw5Cq9A/wK5lj4ZXs1bSGM8f6fRAM9QoRTDzVVqYop1cBychjutFeIoXSWCCXD3tX0cUudCOf1PmjSVN1uPAvexVEV3nJTR41TOnmbnT7jtKxZHQVKc+vQOH9c6xt9jXkO7p4aqwV/kqPcPtLv1NK/r5xQvmL4lWQ1k152A7N72mGvOoomuNvrh7OqgLKRm4UmYVvG2ZdEKMvit/ckmVAOhrViNEiJc5NftK366+ndstNrspsW2K8ea/NZ0wionGSV2irn8dqhp6ltNBC4k94pOB0W4p+wfvQNZwnTTmUJRNZ...
-错误堆栈:
-
-出错时间:10/07/2023 11:03:31
-出错文件:http://localhost:5001/HJGL/CheckManage/CheckManage.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:10/07/2023 11:03:31
-
-
-错误信息开始=====>
-错误类型:ViewStateException
-错误信息:无效的视图状态。
- Client IP: ::1
- Port: 56824
- Referer: http://localhost:5001/HJGL/CheckManage/CheckManage.aspx
- Path: /HJGL/CheckManage/CheckManage.aspx
- User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36 Edg/117.0.2045.47
- ViewState: /wEdAFs+xSMj4tAYUwLgltJ00vItg+lNmK+p44AabHvGoyS36Qrp2uSpGmDSYePrRevBfQk1ITUHdiEtqXZBbvuOqN/w3FVGiCdEGT78ygGTXt/ACQLHgTV+ftPCtr4hWr6HmvcZuhEW4J6d0Tm5DAVNc2fIC0hzW4KyFGT2waQxyhL1uOrgq39m3wRCAftoorokkm7K2OnZFuqtICihq/fInjdO6bFUfsonKDNp8f0B+TyQAIWXKes/8AWoTMrtk1QgxbuIEMPMcDeergBoFThnIB0V/b5e5uepQc78ANDWSkwKdIckDLLYDHfmPH0y3lTmx/HXH/4IHhEpTOL1FyrN2gL2e7DDOnvAxxyxdLSNKt7tyWZcw89izJduEOIBy21CgU1cGR6us4mSPpPIj5vF6ouCKTkVFHwUjcw5Cq9A/wK5lj4ZXs1bSGM8f6fRAM9QoRTDzVVqYop1cBychjutFeIoXSWCCXD3tX0cUudCOf1PmjSVN1uPAvexVEV3nJTR41TOnmbnT7jtKxZHQVKc+vQOH9c6xt9jXkO7p4aqwV/kqPcPtLv1NK/r5xQvmL4lWQ1k152A7N72mGvOoomuNvrh7OqgLKRm4UmYVvG2ZdEKMvit/ckmVAOhrViNEiJc5NftK366+ndstNrspsW2K8ea/NZ0wionGSV2irn8dqhp6ltNBC4k94pOB0W4p+wfvQNZwnTTmUJRNZ...
-错误堆栈:
-
-出错时间:10/07/2023 11:03:36
-出错文件:http://localhost:5001/HJGL/CheckManage/CheckManage.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:10/07/2023 11:03:36
-
-
-错误信息开始=====>
-错误类型:ViewStateException
-错误信息:无效的视图状态。
- Client IP: ::1
- Port: 56824
- Referer: http://localhost:5001/HJGL/CheckManage/CheckManage.aspx
- Path: /HJGL/CheckManage/CheckManage.aspx
- User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36 Edg/117.0.2045.47
- ViewState: /wEdAFs+xSMj4tAYUwLgltJ00vItg+lNmK+p44AabHvGoyS36Qrp2uSpGmDSYePrRevBfQk1ITUHdiEtqXZBbvuOqN/w3FVGiCdEGT78ygGTXt/ACQLHgTV+ftPCtr4hWr6HmvcZuhEW4J6d0Tm5DAVNc2fIC0hzW4KyFGT2waQxyhL1uOrgq39m3wRCAftoorokkm7K2OnZFuqtICihq/fInjdO6bFUfsonKDNp8f0B+TyQAIWXKes/8AWoTMrtk1QgxbuIEMPMcDeergBoFThnIB0V/b5e5uepQc78ANDWSkwKdIckDLLYDHfmPH0y3lTmx/HXH/4IHhEpTOL1FyrN2gL2e7DDOnvAxxyxdLSNKt7tyWZcw89izJduEOIBy21CgU1cGR6us4mSPpPIj5vF6ouCKTkVFHwUjcw5Cq9A/wK5lj4ZXs1bSGM8f6fRAM9QoRTDzVVqYop1cBychjutFeIoXSWCCXD3tX0cUudCOf1PmjSVN1uPAvexVEV3nJTR41TOnmbnT7jtKxZHQVKc+vQOH9c6xt9jXkO7p4aqwV/kqPcPtLv1NK/r5xQvmL4lWQ1k152A7N72mGvOoomuNvrh7OqgLKRm4UmYVvG2ZdEKMvit/ckmVAOhrViNEiJc5NftK366+ndstNrspsW2K8ea/NZ0wionGSV2irn8dqhp6ltNBC4k94pOB0W4p+wfvQNZwnTTmUJRNZ...
-错误堆栈:
-
-出错时间:10/07/2023 11:03:47
-出错文件:http://localhost:5001/HJGL/CheckManage/CheckManage.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:10/07/2023 11:03:47
-
-
-错误信息开始=====>
-错误类型:ViewStateException
-错误信息:无效的视图状态。
- Client IP: ::1
- Port: 56824
- Referer: http://localhost:5001/HJGL/CheckManage/CheckManage.aspx
- Path: /HJGL/CheckManage/CheckManage.aspx
- User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36 Edg/117.0.2045.47
- ViewState: /wEdAFs+xSMj4tAYUwLgltJ00vItg+lNmK+p44AabHvGoyS36Qrp2uSpGmDSYePrRevBfQk1ITUHdiEtqXZBbvuOqN/w3FVGiCdEGT78ygGTXt/ACQLHgTV+ftPCtr4hWr6HmvcZuhEW4J6d0Tm5DAVNc2fIC0hzW4KyFGT2waQxyhL1uOrgq39m3wRCAftoorokkm7K2OnZFuqtICihq/fInjdO6bFUfsonKDNp8f0B+TyQAIWXKes/8AWoTMrtk1QgxbuIEMPMcDeergBoFThnIB0V/b5e5uepQc78ANDWSkwKdIckDLLYDHfmPH0y3lTmx/HXH/4IHhEpTOL1FyrN2gL2e7DDOnvAxxyxdLSNKt7tyWZcw89izJduEOIBy21CgU1cGR6us4mSPpPIj5vF6ouCKTkVFHwUjcw5Cq9A/wK5lj4ZXs1bSGM8f6fRAM9QoRTDzVVqYop1cBychjutFeIoXSWCCXD3tX0cUudCOf1PmjSVN1uPAvexVEV3nJTR41TOnmbnT7jtKxZHQVKc+vQOH9c6xt9jXkO7p4aqwV/kqPcPtLv1NK/r5xQvmL4lWQ1k152A7N72mGvOoomuNvrh7OqgLKRm4UmYVvG2ZdEKMvit/ckmVAOhrViNEiJc5NftK366+ndstNrspsW2K8ea/NZ0wionGSV2irn8dqhp6ltNBC4k94pOB0W4p+wfvQNZwnTTmUJRNZ...
-错误堆栈:
-
-出错时间:10/07/2023 11:03:56
-出错文件:http://localhost:5001/HJGL/CheckManage/CheckManage.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:10/07/2023 11:03:56
-
-
-错误信息开始=====>
-错误类型:ViewStateException
-错误信息:无效的视图状态。
- Client IP: ::1
- Port: 56824
- Referer: http://localhost:5001/HJGL/CheckManage/CheckManage.aspx
- Path: /HJGL/CheckManage/CheckManage.aspx
- User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36 Edg/117.0.2045.47
- ViewState: /wEdAFs+xSMj4tAYUwLgltJ00vItg+lNmK+p44AabHvGoyS36Qrp2uSpGmDSYePrRevBfQk1ITUHdiEtqXZBbvuOqN/w3FVGiCdEGT78ygGTXt/ACQLHgTV+ftPCtr4hWr6HmvcZuhEW4J6d0Tm5DAVNc2fIC0hzW4KyFGT2waQxyhL1uOrgq39m3wRCAftoorokkm7K2OnZFuqtICihq/fInjdO6bFUfsonKDNp8f0B+TyQAIWXKes/8AWoTMrtk1QgxbuIEMPMcDeergBoFThnIB0V/b5e5uepQc78ANDWSkwKdIckDLLYDHfmPH0y3lTmx/HXH/4IHhEpTOL1FyrN2gL2e7DDOnvAxxyxdLSNKt7tyWZcw89izJduEOIBy21CgU1cGR6us4mSPpPIj5vF6ouCKTkVFHwUjcw5Cq9A/wK5lj4ZXs1bSGM8f6fRAM9QoRTDzVVqYop1cBychjutFeIoXSWCCXD3tX0cUudCOf1PmjSVN1uPAvexVEV3nJTR41TOnmbnT7jtKxZHQVKc+vQOH9c6xt9jXkO7p4aqwV/kqPcPtLv1NK/r5xQvmL4lWQ1k152A7N72mGvOoomuNvrh7OqgLKRm4UmYVvG2ZdEKMvit/ckmVAOhrViNEiJc5NftK366+ndstNrspsW2K8ea/NZ0wionGSV2irn8dqhp6ltNBC4k94pOB0W4p+wfvQNZwnTTmUJRNZ...
-错误堆栈:
-
-出错时间:10/07/2023 11:03:57
-出错文件:http://localhost:5001/HJGL/CheckManage/CheckManage.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:10/07/2023 11:03:57
-
-
-错误信息开始=====>
-错误类型:ViewStateException
-错误信息:无效的视图状态。
- Client IP: ::1
- Port: 56824
- Referer: http://localhost:5001/HJGL/CheckManage/CheckManage.aspx
- Path: /HJGL/CheckManage/CheckManage.aspx
- User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36 Edg/117.0.2045.47
- ViewState: /wEdAFs+xSMj4tAYUwLgltJ00vItg+lNmK+p44AabHvGoyS36Qrp2uSpGmDSYePrRevBfQk1ITUHdiEtqXZBbvuOqN/w3FVGiCdEGT78ygGTXt/ACQLHgTV+ftPCtr4hWr6HmvcZuhEW4J6d0Tm5DAVNc2fIC0hzW4KyFGT2waQxyhL1uOrgq39m3wRCAftoorokkm7K2OnZFuqtICihq/fInjdO6bFUfsonKDNp8f0B+TyQAIWXKes/8AWoTMrtk1QgxbuIEMPMcDeergBoFThnIB0V/b5e5uepQc78ANDWSkwKdIckDLLYDHfmPH0y3lTmx/HXH/4IHhEpTOL1FyrN2gL2e7DDOnvAxxyxdLSNKt7tyWZcw89izJduEOIBy21CgU1cGR6us4mSPpPIj5vF6ouCKTkVFHwUjcw5Cq9A/wK5lj4ZXs1bSGM8f6fRAM9QoRTDzVVqYop1cBychjutFeIoXSWCCXD3tX0cUudCOf1PmjSVN1uPAvexVEV3nJTR41TOnmbnT7jtKxZHQVKc+vQOH9c6xt9jXkO7p4aqwV/kqPcPtLv1NK/r5xQvmL4lWQ1k152A7N72mGvOoomuNvrh7OqgLKRm4UmYVvG2ZdEKMvit/ckmVAOhrViNEiJc5NftK366+ndstNrspsW2K8ea/NZ0wionGSV2irn8dqhp6ltNBC4k94pOB0W4p+wfvQNZwnTTmUJRNZ...
-错误堆栈:
-
-出错时间:10/07/2023 11:04:05
-出错文件:http://localhost:5001/HJGL/CheckManage/CheckManage.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:10/07/2023 11:04:05
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 BLL.HJGL_PW_JointInfoService.JointCheckStateWriteBack(String jotId, String ndtType, String states) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\BLL\HJGL\WeldingManage\HJGL_PW_JointInfoService.cs:行号 387
- 在 FineUIPro.Web.HJGL.CheckManage.CheckManage.btnModify_Click(Object sender, EventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\CheckManage\CheckManage.aspx.cs:行号 515
- 在 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)
-出错时间:10/07/2023 11:14:04
-出错文件:http://localhost:5001/HJGL/CheckManage/CheckManage.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:10/07/2023 11:14:04
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:DELETE 语句与 REFERENCE 约束"FK_HJGL_BO_QualityRatingRepair_HJGL_CH_RepairItem"冲突。该冲突发生于数据库"HJGLDB_ZHJAN",表"dbo.HJGL_BO_QualityRatingRepair", column 'CH_RepairItemId'。
-语句已终止。
-错误堆栈:
- 在 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()
- 在 FineUIPro.Web.HJGL.CheckManage.CheckManage.btnModify_Click(Object sender, EventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\CheckManage\CheckManage.aspx.cs:行号 514
- 在 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)
-出错时间:10/07/2023 11:20:33
-出错文件:http://localhost:5001/HJGL/CheckManage/CheckManage.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:10/07/2023 11:20:33
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:DELETE 语句与 REFERENCE 约束"FK_HJGL_BO_QualityRatingRepair_HJGL_CH_RepairItem"冲突。该冲突发生于数据库"HJGLDB_ZHJAN",表"dbo.HJGL_BO_QualityRatingRepair", column 'CH_RepairItemId'。
-语句已终止。
-错误堆栈:
- 在 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()
- 在 FineUIPro.Web.HJGL.CheckManage.CheckManage.btnModify_Click(Object sender, EventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\CheckManage\CheckManage.aspx.cs:行号 514
- 在 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)
-出错时间:10/07/2023 11:21:33
-出错文件:http://localhost:5001/HJGL/CheckManage/CheckManage.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:10/07/2023 11:21:33
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:DELETE 语句与 REFERENCE 约束"FK_HJGL_BO_QualityRatingRepair_HJGL_CH_RepairItem"冲突。该冲突发生于数据库"HJGLDB_ZHJAN",表"dbo.HJGL_BO_QualityRatingRepair", column 'CH_RepairItemId'。
-语句已终止。
-错误堆栈:
- 在 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()
- 在 FineUIPro.Web.HJGL.CheckManage.CheckManage.btnModify_Click(Object sender, EventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\CheckManage\CheckManage.aspx.cs:行号 502
- 在 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)
-出错时间:10/07/2023 11:23:43
-出错文件:http://localhost:5001/HJGL/CheckManage/CheckManage.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:10/07/2023 11:23:43
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:DELETE 语句与 REFERENCE 约束"FK_HJGL_BO_QualityRatingRepair_HJGL_CH_RepairItem"冲突。该冲突发生于数据库"HJGLDB_ZHJAN",表"dbo.HJGL_BO_QualityRatingRepair", column 'CH_RepairItemId'。
-语句已终止。
-错误堆栈:
- 在 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()
- 在 FineUIPro.Web.HJGL.CheckManage.CheckManage.btnModify_Click(Object sender, EventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\CheckManage\CheckManage.aspx.cs:行号 502
- 在 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)
-出错时间:10/07/2023 13:27:19
-出错文件:http://localhost:5001/HJGL/CheckManage/CheckManage.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:10/07/2023 13:27:19
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:DELETE 语句与 REFERENCE 约束"FK_HJGL_BO_QualityRatingRepair_HJGL_CH_RepairItem"冲突。该冲突发生于数据库"HJGLDB_ZHJAN",表"dbo.HJGL_BO_QualityRatingRepair", column 'CH_RepairItemId'。
-语句已终止。
-错误堆栈:
- 在 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()
- 在 FineUIPro.Web.HJGL.CheckManage.CheckManage.btnModify_Click(Object sender, EventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\CheckManage\CheckManage.aspx.cs:行号 502
- 在 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)
-出错时间:10/07/2023 14:13:05
-出错文件:http://localhost:5001/HJGL/CheckManage/CheckManage.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:10/07/2023 14:13:05
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:DELETE 语句与 REFERENCE 约束"FK_HJGL_BO_QualityRatingRepair_HJGL_CH_RepairItem"冲突。该冲突发生于数据库"HJGLDB_ZHJAN",表"dbo.HJGL_BO_QualityRatingRepair", column 'CH_RepairItemId'。
-语句已终止。
-错误堆栈:
- 在 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()
- 在 FineUIPro.Web.HJGL.CheckManage.CheckManage.btnModify_Click(Object sender, EventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\CheckManage\CheckManage.aspx.cs:行号 502
- 在 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)
-出错时间:10/07/2023 14:18:56
-出错文件:http://localhost:5001/HJGL/CheckManage/CheckManage.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:10/07/2023 14:18:56
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:DELETE 语句与 REFERENCE 约束"FK_HJGL_CH_RepairItem_HJGL_CH_Repair"冲突。该冲突发生于数据库"HJGLDB_ZHJAN",表"dbo.HJGL_CH_RepairItem", column 'CH_RepairID'。
-语句已终止。
-错误堆栈:
- 在 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()
- 在 FineUIPro.Web.HJGL.CheckManage.CheckManage.btnModify_Click(Object sender, EventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\CheckManage\CheckManage.aspx.cs:行号 509
- 在 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)
-出错时间:10/07/2023 14:29:00
-出错文件:http://localhost:5001/HJGL/CheckManage/CheckManage.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:10/07/2023 14:29:00
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:DELETE 语句与 REFERENCE 约束"FK_HJGL_CH_RepairItem_HJGL_CH_Repair"冲突。该冲突发生于数据库"HJGLDB_ZHJAN",表"dbo.HJGL_CH_RepairItem", column 'CH_RepairID'。
-语句已终止。
-错误堆栈:
- 在 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()
- 在 FineUIPro.Web.HJGL.CheckManage.CheckManage.btnModify_Click(Object sender, EventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\CheckManage\CheckManage.aspx.cs:行号 509
- 在 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)
-出错时间:10/07/2023 14:31:49
-出错文件:http://localhost:5001/HJGL/CheckManage/CheckManage.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:10/07/2023 14:31:49
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:传入的表格格式数据流(TDS)远程过程调用(RPC)协议流不正确。此 RPC 请求中提供了过多的参数。最多应为 2100。
-错误堆栈:
- 在 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.ExecuteReader()
- 在 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.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.HJGL.HotProessManage.HotProessManageItemFind.InitTreeMenu() 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotProessManage\HotProessManageItemFind.aspx.cs:行号 100
- 在 FineUIPro.Web.HJGL.HotProessManage.HotProessManageItemFind.Page_Load(Object sender, EventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotProessManage\HotProessManageItemFind.aspx.cs:行号 57
- 在 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)
-出错时间:10/26/2023 10:44:54
-出错文件:http://localhost:5001/HJGL/HotProessManage/HotProessManageItemFind.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:10/26/2023 10:44:54
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\WeldingManage\RepairItemRecord.aspx(60): error CS1061: “ASP.hjgl_weldingmanage_repairitemrecord_aspx”不包含“btnPrintNew_Click”的定义,并且找不到可接受类型为“ASP.hjgl_weldingmanage_repairitemrecord_aspx”的第一个参数的扩展方法“btnPrintNew_Click”(是否缺少 using 指令或程序集引用?)
-错误堆栈:
- 在 System.Web.Compilation.BuildManager.CompileWebFile(VirtualPath virtualPath)
- 在 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate)
- 在 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate)
- 在 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound)
- 在 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp)
- 在 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath)
- 在 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path)
- 在 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-出错时间:10/27/2023 09:35:34
-出错文件:http://localhost:5001/HJGL/WeldingManage/RepairItemRecord.aspx
-IP地址:::1
-
-出错时间:10/27/2023 09:35:34
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\WeldingManage\RepairItemRecord.aspx(60): error CS1061: “ASP.hjgl_weldingmanage_repairitemrecord_aspx”不包含“btnPrintNew_Click”的定义,并且找不到可接受类型为“ASP.hjgl_weldingmanage_repairitemrecord_aspx”的第一个参数的扩展方法“btnPrintNew_Click”(是否缺少 using 指令或程序集引用?)
-错误堆栈:
- 在 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)
-出错时间:10/27/2023 09:35:41
-出错文件:http://localhost:5001/HJGL/WeldingManage/RepairItemRecord.aspx
-IP地址:::1
-
-出错时间:10/27/2023 09:35:41
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\WeldingManage\RepairItemRecord.aspx(187): error CS1061: “ASP.hjgl_weldingmanage_repairitemrecord_aspx”不包含“Window1_Close”的定义,并且找不到可接受类型为“ASP.hjgl_weldingmanage_repairitemrecord_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)
-出错时间:10/27/2023 10:33:39
-出错文件:http://localhost:5001/HJGL/WeldingManage/RepairItemRecord.aspx
-IP地址:::1
-
-出错时间:10/27/2023 10:33:39
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web._default.Page_Init(Object sender, EventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\default.aspx.cs:行号 115
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnInit(EventArgs e)
- 在 System.Web.UI.Page.OnInit(EventArgs e)
- 在 FineUIPro.Web.PageBase.OnInit(EventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\common\PageBase.cs:行号 135
- 在 System.Web.UI.Control.InitRecursive(Control namingContainer)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:10/27/2023 13:59:54
-出错文件:http://localhost:5001/default.aspx
-IP地址:::1
-
-出错时间:10/27/2023 13:59:54
-
-
-错误信息开始=====>
-错误类型:ViewStateException
-错误信息:无效的视图状态。
- Client IP: ::1
- Port: 21585
- Referer: http://localhost:5001/HJGL/WeldingManage/PointManage.aspx
- Path: /HJGL/WeldingManage/PointManage.aspx
- User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36 Edg/119.0.0.0
- ViewState: /wEdAA6kcCUA8zi5eUjxE9QvTuXQ0XpviUitBYFruP3CssxMczi7wpw4M1xnhx7AGq70eijwzN5qcqxe/OBLvFIAvskmdfS362q6StmL+fuTtw6YvdPIBk8br7fDFT3kM4Tpn2MujX2clPqOKr4htksHtLv/WdWKl8Blni0xRn1Td1m2Uk+nXYigk89Pgbhcz5biAOS6i7iHcvniNV4Wu2VLHLjgJvC2boXkPL/rLX3l2DzIhaZaQrkQnch82dhYt+6CPL/Pg7PkNQ3K4cMaqoaaEG1aRK5V7tU9D16RbE85NOzMmlf1/L+cZbLR27Vop3e4WXlOnq3RWwUbJnz7jvrNk2h8
-错误堆栈:
-
-出错时间:12/08/2023 14:24:23
-出错文件:http://localhost:5001/HJGL/WeldingManage/PointManage.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:12/08/2023 14:24:23
-
-
-错误信息开始=====>
-错误类型:ViewStateException
-错误信息:无效的视图状态。
- Client IP: ::1
- Port: 21585
- Referer: http://localhost:5001/HJGL/WeldingManage/PointManage.aspx
- Path: /HJGL/WeldingManage/PointManage.aspx
- User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36 Edg/119.0.0.0
- ViewState: /wEdAA6kcCUA8zi5eUjxE9QvTuXQ0XpviUitBYFruP3CssxMczi7wpw4M1xnhx7AGq70eijwzN5qcqxe/OBLvFIAvskmdfS362q6StmL+fuTtw6YvdPIBk8br7fDFT3kM4Tpn2MujX2clPqOKr4htksHtLv/WdWKl8Blni0xRn1Td1m2Uk+nXYigk89Pgbhcz5biAOS6i7iHcvniNV4Wu2VLHLjgJvC2boXkPL/rLX3l2DzIhaZaQrkQnch82dhYt+6CPL/Pg7PkNQ3K4cMaqoaaEG1aRK5V7tU9D16RbE85NOzMmlf1/L+cZbLR27Vop3e4WXlOnq3RWwUbJnz7jvrNk2h8
-错误堆栈:
-
-出错时间:12/08/2023 14:24:27
-出错文件:http://localhost:5001/HJGL/WeldingManage/PointManage.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:12/08/2023 14:24:27
-
-
-错误信息开始=====>
-错误类型:ViewStateException
-错误信息:无效的视图状态。
- Client IP: ::1
- Port: 21585
- Referer: http://localhost:5001/HJGL/WeldingManage/PointManage.aspx
- Path: /HJGL/WeldingManage/PointManage.aspx
- User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36 Edg/119.0.0.0
- ViewState: /wEdAA6kcCUA8zi5eUjxE9QvTuXQ0XpviUitBYFruP3CssxMczi7wpw4M1xnhx7AGq70eijwzN5qcqxe/OBLvFIAvskmdfS362q6StmL+fuTtw6YvdPIBk8br7fDFT3kM4Tpn2MujX2clPqOKr4htksHtLv/WdWKl8Blni0xRn1Td1m2Uk+nXYigk89Pgbhcz5biAOS6i7iHcvniNV4Wu2VLHLjgJvC2boXkPL/rLX3l2DzIhaZaQrkQnch82dhYt+6CPL/Pg7PkNQ3K4cMaqoaaEG1aRK5V7tU9D16RbE85NOzMmlf1/L+cZbLR27Vop3e4WXlOnq3RWwUbJnz7jvrNk2h8
-错误堆栈:
-
-出错时间:12/08/2023 14:24:30
-出错文件:http://localhost:5001/HJGL/WeldingManage/PointManage.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:12/08/2023 14:24:30
-
-
-错误信息开始=====>
-错误类型:ViewStateException
-错误信息:无效的视图状态。
- Client IP: ::1
- Port: 21585
- Referer: http://localhost:5001/HJGL/WeldingManage/PointManage.aspx
- Path: /HJGL/WeldingManage/PointManage.aspx
- User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36 Edg/119.0.0.0
- ViewState: /wEdAA6kcCUA8zi5eUjxE9QvTuXQ0XpviUitBYFruP3CssxMczi7wpw4M1xnhx7AGq70eijwzN5qcqxe/OBLvFIAvskmdfS362q6StmL+fuTtw6YvdPIBk8br7fDFT3kM4Tpn2MujX2clPqOKr4htksHtLv/WdWKl8Blni0xRn1Td1m2Uk+nXYigk89Pgbhcz5biAOS6i7iHcvniNV4Wu2VLHLjgJvC2boXkPL/rLX3l2DzIhaZaQrkQnch82dhYt+6CPL/Pg7PkNQ3K4cMaqoaaEG1aRK5V7tU9D16RbE85NOzMmlf1/L+cZbLR27Vop3e4WXlOnq3RWwUbJnz7jvrNk2h8
-错误堆栈:
-
-出错时间:12/08/2023 14:24:35
-出错文件:http://localhost:5001/HJGL/WeldingManage/PointManage.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:12/08/2023 14:24:35
-
-
-错误信息开始=====>
-错误类型:ViewStateException
-错误信息:无效的视图状态。
- Client IP: ::1
- Port: 21585
- Referer: http://localhost:5001/HJGL/WeldingManage/PointManage.aspx
- Path: /HJGL/WeldingManage/PointManage.aspx
- User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36 Edg/119.0.0.0
- ViewState: /wEdAA6kcCUA8zi5eUjxE9QvTuXQ0XpviUitBYFruP3CssxMczi7wpw4M1xnhx7AGq70eijwzN5qcqxe/OBLvFIAvskmdfS362q6StmL+fuTtw6YvdPIBk8br7fDFT3kM4Tpn2MujX2clPqOKr4htksHtLv/WdWKl8Blni0xRn1Td1m2Uk+nXYigk89Pgbhcz5biAOS6i7iHcvniNV4Wu2VLHLjgJvC2boXkPL/rLX3l2DzIhaZaQrkQnch82dhYt+6CPL/Pg7PkNQ3K4cMaqoaaEG1aRK5V7tU9D16RbE85NOzMmlf1/L+cZbLR27Vop3e4WXlOnq3RWwUbJnz7jvrNk2h8
-错误堆栈:
-
-出错时间:12/08/2023 14:24:36
-出错文件:http://localhost:5001/HJGL/WeldingManage/PointManage.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:12/08/2023 14:24:36
-
-
-错误信息开始=====>
-错误类型:ViewStateException
-错误信息:无效的视图状态。
- Client IP: ::1
- Port: 21585
- Referer: http://localhost:5001/HJGL/WeldingManage/PointManage.aspx
- Path: /HJGL/WeldingManage/PointManage.aspx
- User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36 Edg/119.0.0.0
- ViewState: /wEdAA6kcCUA8zi5eUjxE9QvTuXQ0XpviUitBYFruP3CssxMczi7wpw4M1xnhx7AGq70eijwzN5qcqxe/OBLvFIAvskmdfS362q6StmL+fuTtw6YvdPIBk8br7fDFT3kM4Tpn2MujX2clPqOKr4htksHtLv/WdWKl8Blni0xRn1Td1m2Uk+nXYigk89Pgbhcz5biAOS6i7iHcvniNV4Wu2VLHLjgJvC2boXkPL/rLX3l2DzIhaZaQrkQnch82dhYt+6CPL/Pg7PkNQ3K4cMaqoaaEG1aRK5V7tU9D16RbE85NOzMmlf1/L+cZbLR27Vop3e4WXlOnq3RWwUbJnz7jvrNk2h8
-错误堆栈:
-
-出错时间:12/08/2023 14:24:40
-出错文件:http://localhost:5001/HJGL/WeldingManage/PointManage.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:12/08/2023 14:24:40
-
-
-错误信息开始=====>
-错误类型:HttpException
-错误信息:文件“/HJGL/WeldingReport/RTCheckRateConfirm.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)
-出错时间:12/12/2023 09:36:36
-出错文件:http://localhost:5001/HJGL/WeldingReport/RTCheckRateConfirm.aspx
-IP地址:::1
-
-出错时间:12/12/2023 09:36:36
-
-
-错误信息开始=====>
-错误类型:HttpParseException
-错误信息:类型“FineUIPro.Grid”不具有名为“IsFluid”的公共属性。
-错误堆栈:
- 在 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.Grid”不具有名为“IsFluid”的公共属性。
-----错误堆栈:
- 在 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)
-出错时间:12/13/2023 10:41:42
-出错文件:http://localhost:5001/HJGL/WeldingReport/RTCheckRateConfirm.aspx
-IP地址:::1
-
-出错时间:12/13/2023 10:41:42
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HJGL.WeldingReport.RTCheckRateConfirm.GetGridTableHtml(Grid grid) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\WeldingReport\RTCheckRateConfirm.aspx.cs:行号 244
- 在 FineUIPro.Web.HJGL.WeldingReport.RTCheckRateConfirm.btnOut_Click(Object sender, EventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\WeldingReport\RTCheckRateConfirm.aspx.cs:行号 202
- 在 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)
-出错时间:12/15/2023 16:50:10
-出错文件:http://localhost:5001/HJGL/WeldingReport/RTCheckRateConfirm.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:12/15/2023 16:50:10
-
-
-错误信息开始=====>
-错误类型:IndexOutOfRangeException
-错误信息:无法找到列 Sort1。
-错误堆栈:
- 在 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:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\common\PageBase.cs:行号 317
- 在 FineUIPro.Web.HJGL.HotHardManage.HotHardManageEdit.BindGrid() 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotHardManage\HotHardManageEdit.aspx.cs:行号 332
- 在 FineUIPro.Web.HJGL.HotHardManage.HotHardManageEdit.tvControlItem_NodeCommand(Object sender, TreeCommandEventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotHardManage\HotHardManageEdit.aspx.cs:行号 275
- 在 FineUIPro.Tree.OnNodeCommand(TreeCommandEventArgs e)
- 在 (Tree , TreeCommandEventArgs )
- 在 FineUIPro.Tree.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)
-出错时间:12/16/2023 15:29:22
-出错文件:http://localhost:5001/HJGL/HotHardManage/HotHardManageEdit.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:12/16/2023 15:29:22
-
-
-错误信息开始=====>
-错误类型:IndexOutOfRangeException
-错误信息:无法找到列 Sort1。
-错误堆栈:
- 在 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:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\common\PageBase.cs:行号 317
- 在 FineUIPro.Web.HJGL.HotHardManage.HotHardManageEdit.BindGrid() 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotHardManage\HotHardManageEdit.aspx.cs:行号 332
- 在 FineUIPro.Web.HJGL.HotHardManage.HotHardManageEdit.tvControlItem_NodeCommand(Object sender, TreeCommandEventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotHardManage\HotHardManageEdit.aspx.cs:行号 275
- 在 FineUIPro.Tree.OnNodeCommand(TreeCommandEventArgs e)
- 在 (Tree , TreeCommandEventArgs )
- 在 FineUIPro.Tree.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)
-出错时间:12/16/2023 15:29:30
-出错文件:http://localhost:5001/HJGL/HotHardManage/HotHardManageEdit.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:12/16/2023 15:29:30
-
-
-错误信息开始=====>
-错误类型:IndexOutOfRangeException
-错误信息:无法找到列 Sort1。
-错误堆栈:
- 在 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:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\common\PageBase.cs:行号 317
- 在 FineUIPro.Web.HJGL.HotHardManage.HotHardManageEdit.BindGrid() 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotHardManage\HotHardManageEdit.aspx.cs:行号 332
- 在 FineUIPro.Web.HJGL.HotHardManage.HotHardManageEdit.tvControlItem_NodeCommand(Object sender, TreeCommandEventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotHardManage\HotHardManageEdit.aspx.cs:行号 275
- 在 FineUIPro.Tree.OnNodeCommand(TreeCommandEventArgs e)
- 在 (Tree , TreeCommandEventArgs )
- 在 FineUIPro.Tree.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)
-出错时间:12/16/2023 15:29:33
-出错文件:http://localhost:5001/HJGL/HotHardManage/HotHardManageEdit.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:12/16/2023 15:29:33
-
-
-错误信息开始=====>
-错误类型:IndexOutOfRangeException
-错误信息:无法找到列 Sort1。
-错误堆栈:
- 在 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:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\common\PageBase.cs:行号 317
- 在 FineUIPro.Web.HJGL.HotHardManage.HotHardManageEdit.BindGrid() 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotHardManage\HotHardManageEdit.aspx.cs:行号 332
- 在 FineUIPro.Web.HJGL.HotHardManage.HotHardManageEdit.tvControlItem_NodeCommand(Object sender, TreeCommandEventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotHardManage\HotHardManageEdit.aspx.cs:行号 275
- 在 FineUIPro.Tree.OnNodeCommand(TreeCommandEventArgs e)
- 在 (Tree , TreeCommandEventArgs )
- 在 FineUIPro.Tree.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)
-出错时间:12/16/2023 15:29:34
-出错文件:http://localhost:5001/HJGL/HotHardManage/HotHardManageEdit.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:12/16/2023 15:29:34
-
-
-错误信息开始=====>
-错误类型:IndexOutOfRangeException
-错误信息:无法找到列 Sort1。
-错误堆栈:
- 在 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:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\common\PageBase.cs:行号 317
- 在 FineUIPro.Web.HJGL.HotHardManage.HotHardManageEdit.BindGrid() 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotHardManage\HotHardManageEdit.aspx.cs:行号 332
- 在 FineUIPro.Web.HJGL.HotHardManage.HotHardManageEdit.tvControlItem_NodeCommand(Object sender, TreeCommandEventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotHardManage\HotHardManageEdit.aspx.cs:行号 275
- 在 FineUIPro.Tree.OnNodeCommand(TreeCommandEventArgs e)
- 在 (Tree , TreeCommandEventArgs )
- 在 FineUIPro.Tree.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)
-出错时间:12/16/2023 15:29:36
-出错文件:http://localhost:5001/HJGL/HotHardManage/HotHardManageEdit.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:12/16/2023 15:29:36
-
-
-错误信息开始=====>
-错误类型:IndexOutOfRangeException
-错误信息:无法找到列 Sort1。
-错误堆栈:
- 在 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:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\common\PageBase.cs:行号 317
- 在 FineUIPro.Web.HJGL.HotHardManage.HotHardManageEdit.BindGrid() 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotHardManage\HotHardManageEdit.aspx.cs:行号 332
- 在 FineUIPro.Web.HJGL.HotHardManage.HotHardManageEdit.tvControlItem_NodeCommand(Object sender, TreeCommandEventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotHardManage\HotHardManageEdit.aspx.cs:行号 275
- 在 FineUIPro.Tree.OnNodeCommand(TreeCommandEventArgs e)
- 在 (Tree , TreeCommandEventArgs )
- 在 FineUIPro.Tree.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)
-出错时间:12/16/2023 15:30:24
-出错文件:http://localhost:5001/HJGL/HotHardManage/HotHardManageEdit.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:12/16/2023 15:30:24
-
-
-错误信息开始=====>
-错误类型:IndexOutOfRangeException
-错误信息:无法找到列 Sort1。
-错误堆栈:
- 在 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:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\common\PageBase.cs:行号 317
- 在 FineUIPro.Web.HJGL.HotHardManage.HotHardManageEdit.BindGrid() 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotHardManage\HotHardManageEdit.aspx.cs:行号 332
- 在 FineUIPro.Web.HJGL.HotHardManage.HotHardManageEdit.tvControlItem_NodeCommand(Object sender, TreeCommandEventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotHardManage\HotHardManageEdit.aspx.cs:行号 275
- 在 FineUIPro.Tree.OnNodeCommand(TreeCommandEventArgs e)
- 在 (Tree , TreeCommandEventArgs )
- 在 FineUIPro.Tree.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)
-出错时间:12/16/2023 15:34:43
-出错文件:http://localhost:5001/HJGL/HotHardManage/HotHardManageEdit.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:12/16/2023 15:34:43
-
-
-错误信息开始=====>
-错误类型:IndexOutOfRangeException
-错误信息:无法找到列 Sort1。
-错误堆栈:
- 在 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:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\common\PageBase.cs:行号 317
- 在 FineUIPro.Web.HJGL.HotHardManage.HotHardManageEdit.BindGrid() 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotHardManage\HotHardManageEdit.aspx.cs:行号 332
- 在 FineUIPro.Web.HJGL.HotHardManage.HotHardManageEdit.tvControlItem_NodeCommand(Object sender, TreeCommandEventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotHardManage\HotHardManageEdit.aspx.cs:行号 275
- 在 FineUIPro.Tree.OnNodeCommand(TreeCommandEventArgs e)
- 在 (Tree , TreeCommandEventArgs )
- 在 FineUIPro.Tree.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)
-出错时间:12/16/2023 15:34:45
-出错文件:http://localhost:5001/HJGL/HotHardManage/HotHardManageEdit.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:12/16/2023 15:34:45
-
-
-错误信息开始=====>
-错误类型:IndexOutOfRangeException
-错误信息:无法找到列 Sort1。
-错误堆栈:
- 在 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:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\common\PageBase.cs:行号 317
- 在 FineUIPro.Web.HJGL.HotHardManage.HotHardManageEdit.BindGrid() 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotHardManage\HotHardManageEdit.aspx.cs:行号 332
- 在 FineUIPro.Web.HJGL.HotHardManage.HotHardManageEdit.tvControlItem_NodeCommand(Object sender, TreeCommandEventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotHardManage\HotHardManageEdit.aspx.cs:行号 275
- 在 FineUIPro.Tree.OnNodeCommand(TreeCommandEventArgs e)
- 在 (Tree , TreeCommandEventArgs )
- 在 FineUIPro.Tree.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)
-出错时间:12/16/2023 15:34:46
-出错文件:http://localhost:5001/HJGL/HotHardManage/HotHardManageEdit.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:12/16/2023 15:34:46
-
-
-错误信息开始=====>
-错误类型:IndexOutOfRangeException
-错误信息:无法找到列 Sort1。
-错误堆栈:
- 在 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:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\common\PageBase.cs:行号 317
- 在 FineUIPro.Web.HJGL.HotHardManage.HotHardManageEdit.BindGrid() 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotHardManage\HotHardManageEdit.aspx.cs:行号 332
- 在 FineUIPro.Web.HJGL.HotHardManage.HotHardManageEdit.tvControlItem_NodeCommand(Object sender, TreeCommandEventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotHardManage\HotHardManageEdit.aspx.cs:行号 275
- 在 FineUIPro.Tree.OnNodeCommand(TreeCommandEventArgs e)
- 在 (Tree , TreeCommandEventArgs )
- 在 FineUIPro.Tree.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)
-出错时间:12/16/2023 15:34:48
-出错文件:http://localhost:5001/HJGL/HotHardManage/HotHardManageEdit.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:12/16/2023 15:34:48
-
-
-错误信息开始=====>
-错误类型:IndexOutOfRangeException
-错误信息:无法找到列 Sort1。
-错误堆栈:
- 在 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:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\common\PageBase.cs:行号 317
- 在 FineUIPro.Web.HJGL.HotHardManage.HotHardManageEdit.BindGrid() 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotHardManage\HotHardManageEdit.aspx.cs:行号 332
- 在 FineUIPro.Web.HJGL.HotHardManage.HotHardManageEdit.tvControlItem_NodeCommand(Object sender, TreeCommandEventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\HotHardManage\HotHardManageEdit.aspx.cs:行号 275
- 在 FineUIPro.Tree.OnNodeCommand(TreeCommandEventArgs e)
- 在 (Tree , TreeCommandEventArgs )
- 在 FineUIPro.Tree.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)
-出错时间:12/16/2023 15:36:58
-出错文件:http://localhost:5001/HJGL/HotHardManage/HotHardManageEdit.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:12/16/2023 15:36:58
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\CheckManage\CheckReportExport.aspx(53): error CS1061: “ASP.hjgl_checkmanage_checkreportexport_aspx”不包含“btnFind_Click”的定义,并且找不到可接受类型为“ASP.hjgl_checkmanage_checkreportexport_aspx”的第一个参数的扩展方法“btnFind_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)
-出错时间:12/20/2023 10:38:37
-出错文件:http://localhost:5001/HJGL/CheckManage/CheckReportExport.aspx
-IP地址:::1
-
-出错时间:12/20/2023 10:38:37
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web._default.Page_Init(Object sender, EventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\default.aspx.cs:行号 115
- 在 System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
- 在 System.Web.UI.Control.OnInit(EventArgs e)
- 在 System.Web.UI.Page.OnInit(EventArgs e)
- 在 FineUIPro.Web.PageBase.OnInit(EventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\common\PageBase.cs:行号 135
- 在 System.Web.UI.Control.InitRecursive(Control namingContainer)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:12/21/2023 08:54:42
-出错文件:http://localhost:5001/default.aspx?ispop=1&menuModule=3&projectId=dae54a91-11c8-48d5-a6b7-0a4845714b2d
-IP地址:::1
-
-出错时间:12/21/2023 08:54:42
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.HJGL.CheckManage.CheckReportExport.BindGrid() 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\CheckManage\CheckReportExport.aspx.cs:行号 138
- 在 FineUIPro.Web.HJGL.CheckManage.CheckReportExport.tvControlItem_NodeCommand(Object sender, TreeCommandEventArgs e) 位置 E:\MyProject\ZHHJ\JA\HJGL_ZH\FineUIPro.Web\HJGL\CheckManage\CheckReportExport.aspx.cs:行号 84
- 在 FineUIPro.Tree.OnNodeCommand(TreeCommandEventArgs e)
- 在 (Tree , TreeCommandEventArgs )
- 在 FineUIPro.Tree.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)
-出错时间:12/21/2023 09:17:06
-出错文件:http://localhost:5001/HJGL/CheckManage/CheckReportExport.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:12/21/2023 09:17:06
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:无法打开登录所请求的数据库 "HJGLDB_ZH"。登录失败。
-用户 'sa' 登录失败。
-错误堆栈:
- 在 System.Data.SqlClient.SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, SqlCredential credential, Object providerInfo, String newPassword, SecureString newSecurePassword, Boolean redirectedUserInstance, SqlConnectionString userConnectionOptions, SessionData reconnectSessionData, DbConnectionPool pool, String accessToken, Boolean applyTransientFaultHandling, SqlAuthenticationProviderManager sqlAuthProviderManager)
- 在 System.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, DbConnectionPoolKey poolKey, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection, DbConnectionOptions userOptions)
- 在 System.Data.ProviderBase.DbConnectionFactory.CreatePooledConnection(DbConnectionPool pool, DbConnection owningObject, DbConnectionOptions options, DbConnectionPoolKey poolKey, DbConnectionOptions userOptions)
- 在 System.Data.ProviderBase.DbConnectionPool.CreateObject(DbConnection owningObject, DbConnectionOptions userOptions, DbConnectionInternal oldConnection)
- 在 System.Data.ProviderBase.DbConnectionPool.UserCreateRequest(DbConnection owningObject, DbConnectionOptions userOptions, DbConnectionInternal oldConnection)
- 在 System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, UInt32 waitForMultipleObjectsTimeout, Boolean allowCreate, Boolean onlyOneCheckConnection, DbConnectionOptions userOptions, DbConnectionInternal& connection)
- 在 System.Data.ProviderBase.DbConnectionPool.TryGetConnection(DbConnection owningObject, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal& connection)
- 在 System.Data.ProviderBase.DbConnectionFactory.TryGetConnection(DbConnection owningConnection, TaskCompletionSource`1 retry, DbConnectionOptions userOptions, DbConnectionInternal oldConnection, DbConnectionInternal& connection)
- 在 System.Data.ProviderBase.DbConnectionInternal.TryOpenConnectionInternal(DbConnection outerConnection, DbConnectionFactory connectionFactory, TaskCompletionSource`1 retry, DbConnectionOptions userOptions)
- 在 System.Data.SqlClient.SqlConnection.TryOpenInner(TaskCompletionSource`1 retry)
- 在 System.Data.SqlClient.SqlConnection.TryOpen(TaskCompletionSource`1 retry)
- 在 System.Data.SqlClient.SqlConnection.Open()
- 在 System.Data.Linq.SqlClient.SqlConnectionManager.UseConnection(IConnectionUser user)
- 在 System.Data.Linq.SqlClient.SqlProvider.get_IsSqlCe()
- 在 System.Data.Linq.SqlClient.SqlProvider.InitializeProviderMode()
- 在 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)
- 在 BLL.Sys_UserService.UserLogOn(String account, String password, Boolean rememberMe, Page page) 位置 D:\数据\诺必达\镇海建安\ZHJA_HJGL\HJGL_ZH\BLL\Common\SysManage\Sys_UserService.cs:行号 41
- 在 FineUIPro.Web.Login.btnLogin_Click(Object sender, EventArgs e) 位置 D:\数据\诺必达\镇海建安\ZHJA_HJGL\HJGL_ZH\FineUIPro.Web\Login.aspx.cs:行号 57
- 在 FineUIPro.Button.OnClick(EventArgs e)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:07/03/2024 10:37:56
-出错文件:http://localhost:5001/Login.aspx
-IP地址:::1
-
-出错时间:07/03/2024 10:37:56
-
-
-错误信息开始=====>
-错误类型:TypeInitializationException
-错误信息:“Newtonsoft.Json.JsonWriter”的类型初始值设定项引发异常。
-错误堆栈:
- 在 Newtonsoft.Json.JsonWriter..ctor()
- 在 Newtonsoft.Json.JsonTextWriter..ctor(TextWriter textWriter)
- 在 Newtonsoft.Json.Linq.JToken.ToString(Formatting formatting, JsonConverter[] converters)
- 在 Newtonsoft.Json.Linq.JToken.ToString()
- 在 FineUIPro.FState.liODUDFgnTaHAObSSuvhxXErAPYo(String )
- 在 FineUIPro.FState.UsAzaBoapxBKvoJlqBvJFpbJgcycA()
- 在 FineUIPro.ControlBase.LJngLOSMdcbyaDTbTCofEhrzszQmA()
- 在 hZzEMoBFowQHNetYNlTaFyfiuHiLc.LJngLOSMdcbyaDTbTCofEhrzszQmA(Object , EventArgs )
- 在 System.Web.UI.Page.OnInitComplete(EventArgs e)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-----错误类型:VerificationException
-----错误信息:
-----操作可能会破坏运行时稳定性。
-----错误堆栈:
- 在 Newtonsoft.Json.Utilities.EnumUtils.GetValues(Type enumType)
- 在 Newtonsoft.Json.JsonWriter.BuildStateArray()
- 在 Newtonsoft.Json.JsonWriter..cctor()
-出错时间:07/03/2024 10:49:15
-出错文件:http://localhost:5001/Login.aspx
-IP地址:::1
-
-出错时间:07/03/2024 10:49:15
-
-出错时间:07/03/2024 10:49:15
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web._default.Page_Init(Object sender, EventArgs e) 位置 D:\数据\诺必达\镇海建安\ZHJA_HJGL\HJGL_ZH\FineUIPro.Web\default.aspx.cs:行号 115
- 在 System.Web.UI.Control.OnInit(EventArgs e)
- 在 System.Web.UI.Page.OnInit(EventArgs e)
- 在 FineUIPro.Web.PageBase.OnInit(EventArgs e) 位置 D:\数据\诺必达\镇海建安\ZHJA_HJGL\HJGL_ZH\FineUIPro.Web\common\PageBase.cs:行号 135
- 在 System.Web.UI.Control.InitRecursive(Control namingContainer)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:07/03/2024 10:49:31
-出错文件:http://localhost:5001/default.aspx
-IP地址:::1
-
-出错时间:07/03/2024 10:49:31
-
-
-错误信息开始=====>
-错误类型:TypeInitializationException
-错误信息:“Newtonsoft.Json.JsonWriter”的类型初始值设定项引发异常。
-错误堆栈:
- 在 Newtonsoft.Json.JsonWriter..ctor()
- 在 Newtonsoft.Json.JsonTextWriter..ctor(TextWriter textWriter)
- 在 Newtonsoft.Json.Linq.JToken.ToString(Formatting formatting, JsonConverter[] converters)
- 在 Newtonsoft.Json.Linq.JToken.ToString()
- 在 FineUIPro.FState.liODUDFgnTaHAObSSuvhxXErAPYo(String )
- 在 FineUIPro.FState.UsAzaBoapxBKvoJlqBvJFpbJgcycA()
- 在 FineUIPro.ControlBase.LJngLOSMdcbyaDTbTCofEhrzszQmA()
- 在 hZzEMoBFowQHNetYNlTaFyfiuHiLc.LJngLOSMdcbyaDTbTCofEhrzszQmA(Object , EventArgs )
- 在 System.Web.UI.Page.OnInitComplete(EventArgs e)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-----错误类型:VerificationException
-----错误信息:
-----操作可能会破坏运行时稳定性。
-----错误堆栈:
- 在 Newtonsoft.Json.Utilities.EnumUtils.GetValues(Type enumType)
- 在 Newtonsoft.Json.JsonWriter.BuildStateArray()
- 在 Newtonsoft.Json.JsonWriter..cctor()
-出错时间:07/03/2024 10:49:35
-出错文件:http://localhost:5001/Login.aspx
-IP地址:::1
-
-出错时间:07/03/2024 10:49:35
-
-
-错误信息开始=====>
-错误类型:TypeInitializationException
-错误信息:“Newtonsoft.Json.JsonWriter”的类型初始值设定项引发异常。
-错误堆栈:
- 在 Newtonsoft.Json.JsonWriter..ctor()
- 在 Newtonsoft.Json.JsonTextWriter..ctor(TextWriter textWriter)
- 在 Newtonsoft.Json.Linq.JToken.ToString(Formatting formatting, JsonConverter[] converters)
- 在 Newtonsoft.Json.Linq.JToken.ToString()
- 在 FineUIPro.FState.liODUDFgnTaHAObSSuvhxXErAPYo(String )
- 在 FineUIPro.FState.UsAzaBoapxBKvoJlqBvJFpbJgcycA()
- 在 FineUIPro.ControlBase.LJngLOSMdcbyaDTbTCofEhrzszQmA()
- 在 hZzEMoBFowQHNetYNlTaFyfiuHiLc.LJngLOSMdcbyaDTbTCofEhrzszQmA(Object , EventArgs )
- 在 System.Web.UI.Page.OnInitComplete(EventArgs e)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-----错误类型:VerificationException
-----错误信息:
-----操作可能会破坏运行时稳定性。
-----错误堆栈:
- 在 Newtonsoft.Json.Utilities.EnumUtils.GetValues(Type enumType)
- 在 Newtonsoft.Json.JsonWriter.BuildStateArray()
- 在 Newtonsoft.Json.JsonWriter..cctor()
-出错时间:07/03/2024 10:52:18
-出错文件:http://localhost:5001/Login.aspx
-IP地址:::1
-
-出错时间:07/03/2024 10:52:18
-
-出错时间:07/03/2024 10:52:18
-
-
-错误信息开始=====>
-错误类型:TypeInitializationException
-错误信息:“Newtonsoft.Json.JsonWriter”的类型初始值设定项引发异常。
-错误堆栈:
- 在 Newtonsoft.Json.JsonWriter..ctor()
- 在 Newtonsoft.Json.JsonTextWriter..ctor(TextWriter textWriter)
- 在 Newtonsoft.Json.Linq.JToken.ToString(Formatting formatting, JsonConverter[] converters)
- 在 Newtonsoft.Json.Linq.JToken.ToString()
- 在 FineUIPro.FState.liODUDFgnTaHAObSSuvhxXErAPYo(String )
- 在 FineUIPro.FState.UsAzaBoapxBKvoJlqBvJFpbJgcycA()
- 在 FineUIPro.ControlBase.LJngLOSMdcbyaDTbTCofEhrzszQmA()
- 在 hZzEMoBFowQHNetYNlTaFyfiuHiLc.LJngLOSMdcbyaDTbTCofEhrzszQmA(Object , EventArgs )
- 在 System.Web.UI.Page.OnInitComplete(EventArgs e)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-----错误类型:TypeInitializationException
-----错误信息:
-----“Newtonsoft.Json.Utilities.EnumUtils”的类型初始值设定项引发异常。
-----错误堆栈:
- 在 Newtonsoft.Json.Utilities.EnumUtils.GetEnumValuesAndNames(Type enumType)
- 在 Newtonsoft.Json.JsonWriter.BuildStateArray()
- 在 Newtonsoft.Json.JsonWriter..cctor()
---------错误类型:VerificationException
---------错误信息:
---------操作可能会破坏运行时稳定性。
---------错误堆栈:
- 在 Newtonsoft.Json.Utilities.EnumUtils..cctor()
-出错时间:07/03/2024 10:57:51
-出错文件:http://localhost:5001/Login.aspx
-IP地址:::1
-
-出错时间:07/03/2024 10:57:51
-
-
-错误信息开始=====>
-错误类型:TypeInitializationException
-错误信息:“Newtonsoft.Json.JsonWriter”的类型初始值设定项引发异常。
-错误堆栈:
- 在 Newtonsoft.Json.JsonWriter..ctor()
- 在 Newtonsoft.Json.JsonTextWriter..ctor(TextWriter textWriter)
- 在 Newtonsoft.Json.Linq.JToken.ToString(Formatting formatting, JsonConverter[] converters)
- 在 Newtonsoft.Json.Linq.JToken.ToString()
- 在 FineUIPro.FState.liODUDFgnTaHAObSSuvhxXErAPYo(String )
- 在 FineUIPro.FState.UsAzaBoapxBKvoJlqBvJFpbJgcycA()
- 在 FineUIPro.ControlBase.LJngLOSMdcbyaDTbTCofEhrzszQmA()
- 在 hZzEMoBFowQHNetYNlTaFyfiuHiLc.LJngLOSMdcbyaDTbTCofEhrzszQmA(Object , EventArgs )
- 在 System.Web.UI.Page.OnInitComplete(EventArgs e)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-----错误类型:TypeInitializationException
-----错误信息:
-----“Newtonsoft.Json.Utilities.EnumUtils”的类型初始值设定项引发异常。
-----错误堆栈:
- 在 Newtonsoft.Json.Utilities.EnumUtils.GetEnumValuesAndNames(Type enumType)
- 在 Newtonsoft.Json.JsonWriter.BuildStateArray()
- 在 Newtonsoft.Json.JsonWriter..cctor()
---------错误类型:VerificationException
---------错误信息:
---------操作可能会破坏运行时稳定性。
---------错误堆栈:
- 在 Newtonsoft.Json.Utilities.EnumUtils..cctor()
-出错时间:07/03/2024 11:00:14
-出错文件:http://localhost:5001/Login.aspx
-IP地址:::1
-
-出错时间:07/03/2024 11:00:14
-
-
-错误信息开始=====>
-错误类型:TypeInitializationException
-错误信息:“Newtonsoft.Json.JsonWriter”的类型初始值设定项引发异常。
-错误堆栈:
- 在 Newtonsoft.Json.JsonWriter..ctor()
- 在 Newtonsoft.Json.JsonTextWriter..ctor(TextWriter textWriter)
- 在 Newtonsoft.Json.Linq.JToken.ToString(Formatting formatting, JsonConverter[] converters)
- 在 Newtonsoft.Json.Linq.JToken.ToString()
- 在 FineUIPro.FState.liODUDFgnTaHAObSSuvhxXErAPYo(String )
- 在 FineUIPro.FState.UsAzaBoapxBKvoJlqBvJFpbJgcycA()
- 在 FineUIPro.ControlBase.LJngLOSMdcbyaDTbTCofEhrzszQmA()
- 在 hZzEMoBFowQHNetYNlTaFyfiuHiLc.LJngLOSMdcbyaDTbTCofEhrzszQmA(Object , EventArgs )
- 在 System.Web.UI.Page.OnInitComplete(EventArgs e)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-----错误类型:TypeInitializationException
-----错误信息:
-----“Newtonsoft.Json.Utilities.EnumUtils”的类型初始值设定项引发异常。
-----错误堆栈:
- 在 Newtonsoft.Json.Utilities.EnumUtils.GetEnumValuesAndNames(Type enumType)
- 在 Newtonsoft.Json.JsonWriter.BuildStateArray()
- 在 Newtonsoft.Json.JsonWriter..cctor()
---------错误类型:VerificationException
---------错误信息:
---------操作可能会破坏运行时稳定性。
---------错误堆栈:
- 在 Newtonsoft.Json.Utilities.EnumUtils..cctor()
-出错时间:07/03/2024 11:07:33
-出错文件:http://localhost:5001/Login.aspx
-IP地址:::1
-
-出错时间:07/03/2024 11:07:33
-
-
-错误信息开始=====>
-错误类型:TypeInitializationException
-错误信息:“Newtonsoft.Json.JsonWriter”的类型初始值设定项引发异常。
-错误堆栈:
- 在 Newtonsoft.Json.JsonWriter..ctor()
- 在 Newtonsoft.Json.JsonTextWriter..ctor(TextWriter textWriter)
- 在 Newtonsoft.Json.Linq.JToken.ToString(Formatting formatting, JsonConverter[] converters)
- 在 Newtonsoft.Json.Linq.JToken.ToString()
- 在 FineUIPro.FState.liODUDFgnTaHAObSSuvhxXErAPYo(String )
- 在 FineUIPro.FState.UsAzaBoapxBKvoJlqBvJFpbJgcycA()
- 在 FineUIPro.ControlBase.LJngLOSMdcbyaDTbTCofEhrzszQmA()
- 在 hZzEMoBFowQHNetYNlTaFyfiuHiLc.LJngLOSMdcbyaDTbTCofEhrzszQmA(Object , EventArgs )
- 在 System.Web.UI.Page.OnInitComplete(EventArgs e)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-----错误类型:TypeInitializationException
-----错误信息:
-----“Newtonsoft.Json.Utilities.EnumUtils”的类型初始值设定项引发异常。
-----错误堆栈:
- 在 Newtonsoft.Json.Utilities.EnumUtils.GetEnumValuesAndNames(Type enumType)
- 在 Newtonsoft.Json.JsonWriter.BuildStateArray()
- 在 Newtonsoft.Json.JsonWriter..cctor()
---------错误类型:VerificationException
---------错误信息:
---------操作可能会破坏运行时稳定性。
---------错误堆栈:
- 在 Newtonsoft.Json.Utilities.EnumUtils..cctor()
-出错时间:07/03/2024 11:09:28
-出错文件:http://localhost:5001/Login.aspx
-IP地址:::1
-
-出错时间:07/03/2024 11:09:28
-
-
-错误信息开始=====>
-错误类型:TypeInitializationException
-错误信息:“Newtonsoft.Json.JsonWriter”的类型初始值设定项引发异常。
-错误堆栈:
- 在 Newtonsoft.Json.JsonWriter..ctor()
- 在 Newtonsoft.Json.JsonTextWriter..ctor(TextWriter textWriter)
- 在 Newtonsoft.Json.Linq.JToken.ToString(Formatting formatting, JsonConverter[] converters)
- 在 Newtonsoft.Json.Linq.JToken.ToString()
- 在 FineUIPro.FState.liODUDFgnTaHAObSSuvhxXErAPYo(String )
- 在 FineUIPro.FState.UsAzaBoapxBKvoJlqBvJFpbJgcycA()
- 在 FineUIPro.ControlBase.LJngLOSMdcbyaDTbTCofEhrzszQmA()
- 在 hZzEMoBFowQHNetYNlTaFyfiuHiLc.LJngLOSMdcbyaDTbTCofEhrzszQmA(Object , EventArgs )
- 在 System.Web.UI.Page.OnInitComplete(EventArgs e)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-----错误类型:TypeInitializationException
-----错误信息:
-----“Newtonsoft.Json.Utilities.EnumUtils”的类型初始值设定项引发异常。
-----错误堆栈:
- 在 Newtonsoft.Json.Utilities.EnumUtils.GetEnumValuesAndNames(Type enumType)
- 在 Newtonsoft.Json.JsonWriter.BuildStateArray()
- 在 Newtonsoft.Json.JsonWriter..cctor()
---------错误类型:VerificationException
---------错误信息:
---------操作可能会破坏运行时稳定性。
---------错误堆栈:
- 在 Newtonsoft.Json.Utilities.EnumUtils..cctor()
-出错时间:07/17/2024 16:06:05
-出错文件:http://localhost:5001/Login.aspx
-IP地址:::1
-
-出错时间:07/17/2024 16:06:05
-
-出错时间:07/17/2024 16:06:05
-
-
-错误信息开始=====>
-错误类型:TypeInitializationException
-错误信息:“Newtonsoft.Json.JsonWriter”的类型初始值设定项引发异常。
-错误堆栈:
- 在 Newtonsoft.Json.JsonWriter..ctor()
- 在 Newtonsoft.Json.JsonTextWriter..ctor(TextWriter textWriter)
- 在 Newtonsoft.Json.Linq.JToken.ToString(Formatting formatting, JsonConverter[] converters)
- 在 Newtonsoft.Json.Linq.JToken.ToString()
- 在 FineUIPro.FState.liODUDFgnTaHAObSSuvhxXErAPYo(String )
- 在 FineUIPro.FState.UsAzaBoapxBKvoJlqBvJFpbJgcycA()
- 在 FineUIPro.ControlBase.LJngLOSMdcbyaDTbTCofEhrzszQmA()
- 在 hZzEMoBFowQHNetYNlTaFyfiuHiLc.LJngLOSMdcbyaDTbTCofEhrzszQmA(Object , EventArgs )
- 在 System.Web.UI.Page.OnInitComplete(EventArgs e)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-----错误类型:TypeInitializationException
-----错误信息:
-----“Newtonsoft.Json.Utilities.EnumUtils”的类型初始值设定项引发异常。
-----错误堆栈:
- 在 Newtonsoft.Json.Utilities.EnumUtils.GetEnumValuesAndNames(Type enumType)
- 在 Newtonsoft.Json.JsonWriter.BuildStateArray()
- 在 Newtonsoft.Json.JsonWriter..cctor()
---------错误类型:VerificationException
---------错误信息:
---------操作可能会破坏运行时稳定性。
---------错误堆栈:
- 在 Newtonsoft.Json.Utilities.EnumUtils..cctor()
-出错时间:07/17/2024 16:08:10
-出错文件:http://localhost:5001/Login.aspx
-IP地址:::1
-
-出错时间:07/17/2024 16:08:10
-
-出错时间:07/17/2024 16:08:10
-
-
-错误信息开始=====>
-错误类型:NotSupportedException
-错误信息:不能在查询运算符(Contains 运算符除外)的 LINQ to SQL 实现中使用本地序列。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.CoerceToSequence(SqlNode node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitJoin(Expression outerSequence, Expression innerSequence, LambdaExpression outerKeySelector, LambdaExpression innerKeySelector, LambdaExpression resultSelector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(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.Linq.Lookup`2.CreateForJoin(IEnumerable`1 source, Func`2 keySelector, IEqualityComparer`1 comparer)
- 在 System.Linq.Enumerable.d__38`4.MoveNext()
- 在 System.Linq.Lookup`2.Create[TSource](IEnumerable`1 source, Func`2 keySelector, Func`2 elementSelector, IEqualityComparer`1 comparer)
- 在 System.Linq.GroupedEnumerable`3.GetEnumerator()
- 在 System.Linq.Enumerable.WhereSelectEnumerableIterator`2.MoveNext()
- 在 System.Linq.Enumerable.d__64`1.MoveNext()
- 在 System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
- 在 System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
- 在 FineUIPro.Web.common.mainGdaz.Page_Load(Object sender, EventArgs e) 位置 D:\数据\诺必达\镇海建安\ZHJA_HJGL\HJGL_ZH\FineUIPro.Web\common\mainGdaz.aspx.cs:行号 49
- 在 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)
-出错时间:07/18/2024 09:38:20
-出错文件:http://localhost:5001/common/mainGdaz.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:07/18/2024 09:38:20
-
-
-错误信息开始=====>
-错误类型:NotSupportedException
-错误信息:不能在查询运算符(Contains 运算符除外)的 LINQ to SQL 实现中使用本地序列。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.CoerceToSequence(SqlNode node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitJoin(Expression outerSequence, Expression innerSequence, LambdaExpression outerKeySelector, LambdaExpression innerKeySelector, LambdaExpression resultSelector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(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.Linq.Lookup`2.CreateForJoin(IEnumerable`1 source, Func`2 keySelector, IEqualityComparer`1 comparer)
- 在 System.Linq.Enumerable.d__38`4.MoveNext()
- 在 System.Linq.Lookup`2.Create[TSource](IEnumerable`1 source, Func`2 keySelector, Func`2 elementSelector, IEqualityComparer`1 comparer)
- 在 System.Linq.GroupedEnumerable`3.GetEnumerator()
- 在 System.Linq.Enumerable.WhereSelectEnumerableIterator`2.MoveNext()
- 在 System.Linq.Enumerable.d__64`1.MoveNext()
- 在 System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
- 在 System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
- 在 FineUIPro.Web.common.mainGdaz.Page_Load(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)
-出错时间:07/18/2024 09:40:15
-出错文件:http://localhost:5001/common/mainGdaz.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:07/18/2024 09:40:15
-
-
-错误信息开始=====>
-错误类型:NotSupportedException
-错误信息:不能在查询运算符(Contains 运算符除外)的 LINQ to SQL 实现中使用本地序列。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.CoerceToSequence(SqlNode node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitJoin(Expression outerSequence, Expression innerSequence, LambdaExpression outerKeySelector, LambdaExpression innerKeySelector, LambdaExpression resultSelector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(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.Linq.Lookup`2.CreateForJoin(IEnumerable`1 source, Func`2 keySelector, IEqualityComparer`1 comparer)
- 在 System.Linq.Enumerable.d__38`4.MoveNext()
- 在 System.Linq.Lookup`2.Create[TSource](IEnumerable`1 source, Func`2 keySelector, Func`2 elementSelector, IEqualityComparer`1 comparer)
- 在 System.Linq.GroupedEnumerable`3.GetEnumerator()
- 在 System.Linq.Enumerable.WhereSelectEnumerableIterator`2.MoveNext()
- 在 System.Linq.Enumerable.d__64`1.MoveNext()
- 在 System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
- 在 System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
- 在 FineUIPro.Web.common.mainGdaz.Page_Load(Object sender, EventArgs e) 位置 D:\数据\诺必达\镇海建安\ZHJA_HJGL\HJGL_ZH\FineUIPro.Web\common\mainGdaz.aspx.cs:行号 55
- 在 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)
-出错时间:07/18/2024 09:41:34
-出错文件:http://localhost:5001/common/mainGdaz.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:07/18/2024 09:41:34
-
-
-错误信息开始=====>
-错误类型:NotSupportedException
-错误信息:不能在查询运算符(Contains 运算符除外)的 LINQ to SQL 实现中使用本地序列。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.CoerceToSequence(SqlNode node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitJoin(Expression outerSequence, Expression innerSequence, LambdaExpression outerKeySelector, LambdaExpression innerKeySelector, LambdaExpression resultSelector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(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.Linq.Lookup`2.CreateForJoin(IEnumerable`1 source, Func`2 keySelector, IEqualityComparer`1 comparer)
- 在 System.Linq.Enumerable.d__38`4.MoveNext()
- 在 System.Linq.Lookup`2.Create[TSource](IEnumerable`1 source, Func`2 keySelector, Func`2 elementSelector, IEqualityComparer`1 comparer)
- 在 System.Linq.GroupedEnumerable`3.GetEnumerator()
- 在 System.Linq.Enumerable.WhereSelectEnumerableIterator`2.MoveNext()
- 在 System.Linq.Enumerable.d__64`1.MoveNext()
- 在 System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
- 在 System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
- 在 FineUIPro.Web.common.mainGdaz.Page_Load(Object sender, EventArgs e) 位置 D:\数据\诺必达\镇海建安\ZHJA_HJGL\HJGL_ZH\FineUIPro.Web\common\mainGdaz.aspx.cs:行号 48
- 在 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)
-出错时间:07/18/2024 09:43:53
-出错文件:http://localhost:5001/common/mainGdaz.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:07/18/2024 09:43:53
-
-
-错误信息开始=====>
-错误类型:NotSupportedException
-错误信息:不能在查询运算符(Contains 运算符除外)的 LINQ to SQL 实现中使用本地序列。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.CoerceToSequence(SqlNode node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitJoin(Expression outerSequence, Expression innerSequence, LambdaExpression outerKeySelector, LambdaExpression innerKeySelector, LambdaExpression resultSelector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(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.Linq.Lookup`2.CreateForJoin(IEnumerable`1 source, Func`2 keySelector, IEqualityComparer`1 comparer)
- 在 System.Linq.Enumerable.d__38`4.MoveNext()
- 在 System.Linq.Lookup`2.Create[TSource](IEnumerable`1 source, Func`2 keySelector, Func`2 elementSelector, IEqualityComparer`1 comparer)
- 在 System.Linq.GroupedEnumerable`3.GetEnumerator()
- 在 System.Linq.Enumerable.WhereSelectEnumerableIterator`2.MoveNext()
- 在 System.Linq.Enumerable.d__64`1.MoveNext()
- 在 System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
- 在 System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
- 在 FineUIPro.Web.common.mainGdaz.Page_Load(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)
-出错时间:07/18/2024 09:46:36
-出错文件:http://localhost:5001/common/mainGdaz.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:07/18/2024 09:46:36
-
-
-错误信息开始=====>
-错误类型:NotSupportedException
-错误信息:不能在查询运算符(Contains 运算符除外)的 LINQ to SQL 实现中使用本地序列。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.CoerceToSequence(SqlNode node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitJoin(Expression outerSequence, Expression innerSequence, LambdaExpression outerKeySelector, LambdaExpression innerKeySelector, LambdaExpression resultSelector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(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.common.mainGdaz.Page_Load(Object sender, EventArgs e) 位置 D:\数据\诺必达\镇海建安\ZHJA_HJGL\HJGL_ZH\FineUIPro.Web\common\mainGdaz.aspx.cs:行号 32
- 在 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)
-出错时间:07/18/2024 09:49:10
-出错文件:http://localhost:5001/common/mainGdaz.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:07/18/2024 09:49:10
-
-
-错误信息开始=====>
-错误类型:NotSupportedException
-错误信息:不能在查询运算符(Contains 运算符除外)的 LINQ to SQL 实现中使用本地序列。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.CoerceToSequence(SqlNode node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitJoin(Expression outerSequence, Expression innerSequence, LambdaExpression outerKeySelector, LambdaExpression innerKeySelector, LambdaExpression resultSelector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(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.common.mainGdaz.Page_Load(Object sender, EventArgs e) 位置 D:\数据\诺必达\镇海建安\ZHJA_HJGL\HJGL_ZH\FineUIPro.Web\common\mainGdaz.aspx.cs:行号 48
- 在 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)
-出错时间:07/18/2024 09:51:48
-出错文件:http://localhost:5001/common/mainGdaz.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:07/18/2024 09:51:48
-
-
-错误信息开始=====>
-错误类型:NotSupportedException
-错误信息:不能在查询运算符(Contains 运算符除外)的 LINQ to SQL 实现中使用本地序列。
-错误堆栈:
- 在 System.Data.Linq.SqlClient.QueryConverter.CoerceToSequence(SqlNode node)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitJoin(Expression outerSequence, Expression innerSequence, LambdaExpression outerKeySelector, LambdaExpression innerKeySelector, LambdaExpression resultSelector)
- 在 System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(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.common.mainGdaz.Page_Load(Object sender, EventArgs e) 位置 D:\数据\诺必达\镇海建安\ZHJA_HJGL\HJGL_ZH\FineUIPro.Web\common\mainGdaz.aspx.cs:行号 58
- 在 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)
-出错时间:07/18/2024 09:54:19
-出错文件:http://localhost:5001/common/mainGdaz.aspx
-IP地址:::1
-操作人员:管理员
-
-出错时间:07/18/2024 09:54:19
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web._default.Page_Init(Object sender, EventArgs e) 位置 D:\数据\诺必达\镇海建安\ZHJA_HJGL\HJGL_ZH\FineUIPro.Web\default.aspx.cs:行号 115
- 在 System.Web.UI.Control.OnInit(EventArgs e)
- 在 System.Web.UI.Page.OnInit(EventArgs e)
- 在 FineUIPro.Web.PageBase.OnInit(EventArgs e) 位置 D:\数据\诺必达\镇海建安\ZHJA_HJGL\HJGL_ZH\FineUIPro.Web\common\PageBase.cs:行号 135
- 在 System.Web.UI.Control.InitRecursive(Control namingContainer)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:07/18/2024 14:40:10
-出错文件:http://localhost:5001/default.aspx?ispop=1&menuModule=3&projectId=2d948a2f-5e57-40cc-9004-ced089b91d72
-IP地址:::1
-
-出错时间:07/18/2024 14:40:10
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.common.MainGdazServer.BindProject() 位置 D:\数据\诺必达\镇海建安\ZHJA_HJGL\HJGL_ZH\FineUIPro.Web\common\MainGdazServer.aspx.cs:行号 28
- 在 FineUIPro.Web.common.MainGdazServer.Page_Load(Object sender, EventArgs e) 位置 D:\数据\诺必达\镇海建安\ZHJA_HJGL\HJGL_ZH\FineUIPro.Web\common\MainGdazServer.aspx.cs:行号 19
- 在 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)
-出错时间:07/18/2024 14:40:24
-出错文件:http://localhost:5001/common/mainGdazServer.aspx
-IP地址:::1
-
-出错时间:07/18/2024 14:40:24
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web._default.Page_Init(Object sender, EventArgs e) 位置 D:\数据\诺必达\镇海建安\ZHJA_HJGL\HJGL_ZH\FineUIPro.Web\default.aspx.cs:行号 115
- 在 System.Web.UI.Control.OnInit(EventArgs e)
- 在 System.Web.UI.Page.OnInit(EventArgs e)
- 在 FineUIPro.Web.PageBase.OnInit(EventArgs e) 位置 D:\数据\诺必达\镇海建安\ZHJA_HJGL\HJGL_ZH\FineUIPro.Web\common\PageBase.cs:行号 135
- 在 System.Web.UI.Control.InitRecursive(Control namingContainer)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:07/18/2024 14:40:27
-出错文件:http://localhost:5001/default.aspx?menuModule=2
-IP地址:::1
-
-出错时间:07/18/2024 14:40:27
-
diff --git a/HJGL_ZH/FineUIPro.Web/FineUIPro.Web.csproj b/HJGL_ZH/FineUIPro.Web/FineUIPro.Web.csproj
index 527bd65..b3e2a64 100644
--- a/HJGL_ZH/FineUIPro.Web/FineUIPro.Web.csproj
+++ b/HJGL_ZH/FineUIPro.Web/FineUIPro.Web.csproj
@@ -62,8 +62,9 @@
-
- ..\packages\Newtonsoft.Json.13.0.1\lib\net40\Newtonsoft.Json.dll
+
+ False
+ ..\FineUIPro\Net40\Newtonsoft.Json.dll
..\packages\NPOI.2.5.1\lib\net40\NPOI.dll
@@ -99,8 +100,8 @@
-
- ..\packages\ThoughtWorks.QRCode.1.1.0\lib\ThoughtWorks.QRCode.dll
+
+ ..\..\..\New\HJGL_ZH\FineUIPro.Web\bin\ThoughtWorks.QRCode.dll
diff --git a/HJGL_ZH/FineUIPro.Web/FineUIPro.Web.csproj.user b/HJGL_ZH/FineUIPro.Web/FineUIPro.Web.csproj.user
index 8ba20cd..ac1e608 100644
--- a/HJGL_ZH/FineUIPro.Web/FineUIPro.Web.csproj.user
+++ b/HJGL_ZH/FineUIPro.Web/FineUIPro.Web.csproj.user
@@ -2,7 +2,7 @@
ProjectFiles
- Debug|Any CPU
+ Release|Any CPU
true
diff --git a/HJGL_ZH/FineUIPro.Web/HJGL/HotProessManage/HotProessManageEdit.aspx.cs b/HJGL_ZH/FineUIPro.Web/HJGL/HotProessManage/HotProessManageEdit.aspx.cs
index 440143c..93d0e7c 100644
--- a/HJGL_ZH/FineUIPro.Web/HJGL/HotProessManage/HotProessManageEdit.aspx.cs
+++ b/HJGL_ZH/FineUIPro.Web/HJGL/HotProessManage/HotProessManageEdit.aspx.cs
@@ -127,9 +127,7 @@ namespace FineUIPro.Web.HJGL.HotProessManage
HotProessItem.RequestTime,HotProessItem.ActualTime,HotProessItem.RecordChartNo,
HotProessItem.HotProessDate,HotProessItem.HotProessTrustId,
(SELECT (case when HotHardCode is null then HardTestReportCode else HotHardCode end) as HardTestReportCode FROM dbo.HJGL_CH_HardTestReport
- WHERE HardTestReportId =(SELECT TOP 1 re.HardTestReportId FROM dbo.HJGL_CH_HardTestReportItem item
- left join dbo.HJGL_CH_HardTestReport re on item.HardTestReportId=re.HardTestReportId
- WHERE item.JOT_ID=HotProessItem.JOT_ID AND item.HotProessTrustId=HotProessItem.HotProessTrustId and (re.FileType='R' or re.FileType is null)))
+ WHERE HardTestReportId =t.HardTestReportId)
AS HardnessReportNo,
HotProessItem.HotProessItemId,HotProessItem.SortIndex,HotProessItem.ProessTypes,JointInfo.JOT_JointDesc,isnull(HotProessItem.Remark,'') as Remark
FROM dbo.HJGL_HotProessItem AS HotProessItem
@@ -144,6 +142,9 @@ namespace FineUIPro.Web.HJGL.HotProessManage
left join dbo.HJGL_HotProessItem h on h.JOT_ID=TrustItem.JOT_ID
where h.JOT_ID = TrustItem.JOT_ID and h.HotProessTrustId=TrustItem.HotProessTrustId and h.ProessTypes=TrustItem.ProessTypes) v
on v.JOT_ID=HotProessItem.JOT_ID and v.HotProessItemId=HotProessItem.HotProessItemId
+ left join (SELECT distinct re.HardTestReportId,item.JOT_ID,item.HotProessTrustId FROM dbo.HJGL_CH_HardTestReportItem item
+ left join dbo.HJGL_CH_HardTestReport re on item.HardTestReportId=re.HardTestReportId
+ WHERE (re.FileType='R' or re.FileType is null)) t on t.JOT_ID=HotProessItem.JOT_ID and t.HotProessTrustId=HotProessItem.HotProessTrustId
WHERE JointInfo.ProjectId= @ProjectId ";
listStr.Add(new SqlParameter("@ProjectId", this.tvControlItem.SelectedNodeID));
if (this.drpIsoNo.SelectedValue != BLL.Const._Null)
@@ -188,9 +189,7 @@ namespace FineUIPro.Web.HJGL.HotProessManage
HotProessItem.ActualTime,HotProessItem.RecordChartNo,
HotProessItem.HotProessDate,HotProessItem.HotProessTrustId,HotProessItem.HotProessItemId,HotProessItem.SortIndex,
(SELECT (case when HotHardCode is null then HardTestReportCode else HotHardCode end) as HardTestReportCode FROM dbo.HJGL_CH_HardTestReport
- WHERE HardTestReportId =(SELECT TOP 1 re.HardTestReportId FROM dbo.HJGL_CH_HardTestReportItem item
- left join dbo.HJGL_CH_HardTestReport re on item.HardTestReportId=re.HardTestReportId
- WHERE item.JOT_ID=HotProessItem.JOT_ID AND item.HotProessTrustId=HotProessItem.HotProessTrustId and (re.FileType='R' or re.FileType is null)))
+ WHERE HardTestReportId =t.HardTestReportId)
AS HardnessReportNo,
HotProessItem.ProessTypes,JointInfo.JOT_JointDesc,isnull(HotProessItem.Remark,'') as Remark
FROM dbo.HJGL_HotProessItem AS HotProessItem
@@ -205,6 +204,9 @@ namespace FineUIPro.Web.HJGL.HotProessManage
left join dbo.HJGL_HotProessItem h on h.JOT_ID=TrustItem.JOT_ID
where h.JOT_ID = TrustItem.JOT_ID and h.HotProessTrustId=TrustItem.HotProessTrustId and h.ProessTypes=TrustItem.ProessTypes) v
on v.JOT_ID=HotProessItem.JOT_ID and v.HotProessItemId=HotProessItem.HotProessItemId
+ left join (SELECT distinct re.HardTestReportId,item.JOT_ID,item.HotProessTrustId FROM dbo.HJGL_CH_HardTestReportItem item
+ left join dbo.HJGL_CH_HardTestReport re on item.HardTestReportId=re.HardTestReportId
+ WHERE (re.FileType='R' or re.FileType is null)) t on t.JOT_ID=HotProessItem.JOT_ID and t.HotProessTrustId=HotProessItem.HotProessTrustId
WHERE CHARINDEX(JointInfo.ProjectId,@ProjectId)>0 ";
listStr.Add(new SqlParameter("@ProjectId", projectIds));
if (this.drpIsoNo.SelectedValue != BLL.Const._Null)
diff --git a/HJGL_ZH/FineUIPro.Web/HJGL/TrustManage/TrustManageEdit.aspx b/HJGL_ZH/FineUIPro.Web/HJGL/TrustManage/TrustManageEdit.aspx
index 2464591..290acea 100644
--- a/HJGL_ZH/FineUIPro.Web/HJGL/TrustManage/TrustManageEdit.aspx
+++ b/HJGL_ZH/FineUIPro.Web/HJGL/TrustManage/TrustManageEdit.aspx
@@ -72,6 +72,8 @@
+
+
diff --git a/HJGL_ZH/FineUIPro.Web/HJGL/TrustManage/TrustManageEdit.aspx.cs b/HJGL_ZH/FineUIPro.Web/HJGL/TrustManage/TrustManageEdit.aspx.cs
index 31a77fa..6b95303 100644
--- a/HJGL_ZH/FineUIPro.Web/HJGL/TrustManage/TrustManageEdit.aspx.cs
+++ b/HJGL_ZH/FineUIPro.Web/HJGL/TrustManage/TrustManageEdit.aspx.cs
@@ -681,6 +681,37 @@ namespace FineUIPro.Web.HJGL.TrustManage
return;
}
}
+
+ protected void btnPrint3_Click(object sender, EventArgs e)
+ {
+ if (!string.IsNullOrEmpty(this.tvControlItem.SelectedNodeID))
+ {
+ Model.HJGL_CH_Trust trust = BLL.HJGL_TrustManageEditService.GetCH_TrustByID(this.CH_TrustID);
+ trust.CH_PrintDate = DateTime.Now.Date;
+ trust.CH_Printer = this.CurrUser.UserName;
+ BLL.HJGL_TrustManageEditService.PrintCH_Trust(trust);
+ this.SetTextTemp();
+ this.PageInfoLoad();
+
+ string projectId = string.Empty;
+ string project = tvControlItem.SelectedNode.ParentNode.NodeID;
+ if (!string.IsNullOrEmpty(project))
+ {
+ string[] ps = project.Split('|');
+ if (ps.Count() > 1)
+ {
+ projectId = ps[1];
+ }
+ }
+
+ PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("../../Common/ReportPrint/ExReportPrint.aspx?ispop=1&reportId={0}&replaceParameter={1}&varValue={2}&projectId=0", BLL.Const.HJGL_TrustReport3Id, this.tvControlItem.SelectedNodeID, null, "打印 - ")));
+ }
+ else
+ {
+ Alert.ShowInTop("请选择委托单", MessageBoxIcon.Information);
+ return;
+ }
+ }
#endregion
}
}
\ No newline at end of file
diff --git a/HJGL_ZH/FineUIPro.Web/HJGL/TrustManage/TrustManageEdit.aspx.designer.cs b/HJGL_ZH/FineUIPro.Web/HJGL/TrustManage/TrustManageEdit.aspx.designer.cs
index 174acbf..b75a552 100644
--- a/HJGL_ZH/FineUIPro.Web/HJGL/TrustManage/TrustManageEdit.aspx.designer.cs
+++ b/HJGL_ZH/FineUIPro.Web/HJGL/TrustManage/TrustManageEdit.aspx.designer.cs
@@ -7,11 +7,13 @@
// 自动生成>
//------------------------------------------------------------------------------
-namespace FineUIPro.Web.HJGL.TrustManage {
-
-
- public partial class TrustManageEdit {
-
+namespace FineUIPro.Web.HJGL.TrustManage
+{
+
+
+ public partial class TrustManageEdit
+ {
+
///
/// Head1 控件。
///
@@ -20,7 +22,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.HtmlControls.HtmlHead Head1;
-
+
///
/// form1 控件。
///
@@ -29,7 +31,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.HtmlControls.HtmlForm form1;
-
+
///
/// PageManager1 控件。
///
@@ -38,7 +40,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.PageManager PageManager1;
-
+
///
/// Panel1 控件。
///
@@ -47,7 +49,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel1;
-
+
///
/// panelLeftRegion 控件。
///
@@ -56,7 +58,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel panelLeftRegion;
-
+
///
/// Toolbar1 控件。
///
@@ -65,7 +67,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Toolbar Toolbar1;
-
+
///
/// drpIsProjectClosed 控件。
///
@@ -74,7 +76,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList drpIsProjectClosed;
-
+
///
/// drpProjectId 控件。
///
@@ -83,7 +85,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList drpProjectId;
-
+
///
/// drpNdtType 控件。
///
@@ -92,7 +94,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList drpNdtType;
-
+
///
/// drpIsPrint 控件。
///
@@ -101,7 +103,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList drpIsPrint;
-
+
///
/// tvControlItem 控件。
///
@@ -110,7 +112,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Tree tvControlItem;
-
+
///
/// PanelTree 控件。
///
@@ -119,7 +121,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel PanelTree;
-
+
///
/// panelCenterRegion 控件。
///
@@ -128,7 +130,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel panelCenterRegion;
-
+
///
/// Toolbar2 控件。
///
@@ -137,7 +139,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Toolbar Toolbar2;
-
+
///
/// ToolbarFill1 控件。
///
@@ -146,7 +148,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.ToolbarFill ToolbarFill1;
-
+
///
/// btnPrint 控件。
///
@@ -155,7 +157,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button btnPrint;
-
+
///
/// btnPrint2 控件。
///
@@ -164,7 +166,16 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button btnPrint2;
-
+
+ ///
+ /// Button1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Button Button1;
+
///
/// btnEdit 控件。
///
@@ -173,7 +184,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button btnEdit;
-
+
///
/// btnDelete 控件。
///
@@ -182,7 +193,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button btnDelete;
-
+
///
/// SimpleForm1 控件。
///
@@ -191,7 +202,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form SimpleForm1;
-
+
///
/// txtCH_TrustCode 控件。
///
@@ -200,7 +211,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Label txtCH_TrustCode;
-
+
///
/// drpCH_TrustUnit 控件。
///
@@ -209,7 +220,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Label drpCH_TrustUnit;
-
+
///
/// drpInstallationId 控件。
///
@@ -218,7 +229,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Label drpInstallationId;
-
+
///
/// txtCH_TrustDate 控件。
///
@@ -227,7 +238,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Label txtCH_TrustDate;
-
+
///
/// txtCH_TrustType 控件。
///
@@ -236,7 +247,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Label txtCH_TrustType;
-
+
///
/// drpCH_TrustMan 控件。
///
@@ -245,7 +256,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Label drpCH_TrustMan;
-
+
///
/// drpCH_NDTMethod 控件。
///
@@ -254,7 +265,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Label drpCH_NDTMethod;
-
+
///
/// drpCH_CheckUnit 控件。
///
@@ -263,7 +274,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Label drpCH_CheckUnit;
-
+
///
/// drpCH_NDTRate 控件。
///
@@ -272,7 +283,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Label drpCH_NDTRate;
-
+
///
/// drpCH_AcceptGrade 控件。
///
@@ -281,7 +292,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Label drpCH_AcceptGrade;
-
+
///
/// txtCH_NDTCriteria 控件。
///
@@ -290,7 +301,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Label txtCH_NDTCriteria;
-
+
///
/// drpCH_SlopeType 控件。
///
@@ -299,7 +310,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Label drpCH_SlopeType;
-
+
///
/// drpCH_WeldMethod 控件。
///
@@ -308,7 +319,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Label drpCH_WeldMethod;
-
+
///
/// txtCH_Remark 控件。
///
@@ -317,7 +328,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Label txtCH_Remark;
-
+
///
/// ckbIsPrint 控件。
///
@@ -326,7 +337,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.CheckBox ckbIsPrint;
-
+
///
/// lbPrinter 控件。
///
@@ -335,7 +346,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Label lbPrinter;
-
+
///
/// lbPrintDate 控件。
///
@@ -344,7 +355,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Label lbPrintDate;
-
+
///
/// Grid1 控件。
///
@@ -353,7 +364,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid Grid1;
-
+
///
/// ToolbarSeparator1 控件。
///
@@ -362,7 +373,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.ToolbarSeparator ToolbarSeparator1;
-
+
///
/// ToolbarText1 控件。
///
@@ -371,7 +382,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.ToolbarText ToolbarText1;
-
+
///
/// ddlPageSize 控件。
///
@@ -380,7 +391,7 @@ namespace FineUIPro.Web.HJGL.TrustManage {
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.DropDownList ddlPageSize;
-
+
///
/// Window1 控件。
///
diff --git a/HJGL_ZH/FineUIPro.Web/HJGL/WeldingReport/FeedbackResultSelect.aspx b/HJGL_ZH/FineUIPro.Web/HJGL/WeldingReport/FeedbackResultSelect.aspx
index 4314d61..9894d48 100644
--- a/HJGL_ZH/FineUIPro.Web/HJGL/WeldingReport/FeedbackResultSelect.aspx
+++ b/HJGL_ZH/FineUIPro.Web/HJGL/WeldingReport/FeedbackResultSelect.aspx
@@ -31,7 +31,7 @@
-
+
diff --git a/HJGL_ZH/FineUIPro.Web/WeldMat/UsingSentMat/UsingtMatSelect.aspx b/HJGL_ZH/FineUIPro.Web/WeldMat/UsingSentMat/UsingtMatSelect.aspx
index 1891561..5a8f8b9 100644
--- a/HJGL_ZH/FineUIPro.Web/WeldMat/UsingSentMat/UsingtMatSelect.aspx
+++ b/HJGL_ZH/FineUIPro.Web/WeldMat/UsingSentMat/UsingtMatSelect.aspx
@@ -82,8 +82,8 @@
-
+
diff --git a/HJGL_ZH/Model/obj/Release/Model.csproj.CoreCompileInputs.cache b/HJGL_ZH/Model/obj/Release/Model.csproj.CoreCompileInputs.cache
deleted file mode 100644
index a488486..0000000
--- a/HJGL_ZH/Model/obj/Release/Model.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-ef8b5c00a9ff527f5a7291d35e91314cb426e131e3ad8f695f98b55c1c442b4d
diff --git a/HJGL_ZH/Model/obj/Release/Model.csproj.FileListAbsolute.txt b/HJGL_ZH/Model/obj/Release/Model.csproj.FileListAbsolute.txt
deleted file mode 100644
index 6a7e903..0000000
--- a/HJGL_ZH/Model/obj/Release/Model.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,177 +0,0 @@
-F:\最新\管道焊接\HJGL\HJGL\Model\bin\Release\Model.dll
-F:\最新\管道焊接\HJGL\HJGL\Model\bin\Release\Model.pdb
-F:\最新\管道焊接\HJGL\HJGL\Model\obj\Release\ResolveAssemblyReference.cache
-F:\最新\管道焊接\HJGL\HJGL\Model\obj\Release\Model.dll
-F:\最新\管道焊接\HJGL\HJGL\Model\obj\Release\Model.pdb
-F:\HJGL\HJGL\HJGL\Model\bin\Release\Model.dll
-F:\HJGL\HJGL\HJGL\Model\bin\Release\Model.pdb
-F:\HJGL\HJGL\HJGL\Model\obj\Release\ResolveAssemblyReference.cache
-F:\HJGL\HJGL\HJGL\Model\obj\Release\Model.dll
-F:\HJGL\HJGL\HJGL\Model\obj\Release\Model.pdb
-E:\HJGL\HJGL\HJGL\Model\bin\Release\Model.dll
-E:\HJGL\HJGL\HJGL\Model\bin\Release\Model.pdb
-E:\HJGL\HJGL\HJGL\Model\obj\Release\ResolveAssemblyReference.cache
-E:\HJGL\HJGL\HJGL\Model\obj\Release\Model.dll
-E:\HJGL\HJGL\HJGL\Model\obj\Release\Model.pdb
-E:\HJGL\LUOYANG\HJGL\HJGL\Model\bin\Release\Model.dll
-E:\HJGL\LUOYANG\HJGL\HJGL\Model\bin\Release\Model.pdb
-E:\HJGL\LUOYANG\HJGL\HJGL\Model\obj\Release\Model.dll
-E:\HJGL\LUOYANG\HJGL\HJGL\Model\obj\Release\Model.pdb
-E:\HJGL\LuoYang\HJGL\Model\bin\Release\Model.dll
-E:\HJGL\LuoYang\HJGL\Model\bin\Release\Model.pdb
-E:\HJGL\LuoYang\HJGL\Model\obj\Release\Model.dll
-E:\HJGL\LuoYang\HJGL\Model\obj\Release\Model.pdb
-E:\HJGL\TongYong\HJGL\Model\bin\Release\Model.dll
-E:\HJGL\TongYong\HJGL\Model\bin\Release\Model.pdb
-E:\HJGL\TongYong\HJGL\Model\obj\Release\Model.dll
-E:\HJGL\TongYong\HJGL\Model\obj\Release\Model.pdb
-F:\最新\天辰焊接\HJGL\Model\bin\Release\Model.dll
-F:\最新\天辰焊接\HJGL\Model\bin\Release\Model.pdb
-F:\最新\天辰焊接\HJGL\Model\obj\Release\ResolveAssemblyReference.cache
-F:\最新\天辰焊接\HJGL\Model\obj\Release\Model.dll
-F:\最新\天辰焊接\HJGL\Model\obj\Release\Model.pdb
-E:\HJGL\TianChen\HJGL\Model\bin\Release\Model.dll
-E:\HJGL\TianChen\HJGL\Model\bin\Release\Model.pdb
-E:\HJGL\TianChen\HJGL\Model\obj\Release\Model.dll
-E:\HJGL\TianChen\HJGL\Model\obj\Release\Model.pdb
-E:\HJGL\TianChen\HJGL\Model\obj\Release\Model.csprojResolveAssemblyReference.cache
-D:\ExtJs\HJGL\HJGL\Model\bin\Release\Model.dll
-D:\ExtJs\HJGL\HJGL\Model\bin\Release\Model.pdb
-D:\ExtJs\HJGL\HJGL\Model\obj\Release\ResolveAssemblyReference.cache
-D:\ExtJs\HJGL\HJGL\Model\obj\Release\Model.dll
-D:\ExtJs\HJGL\HJGL\Model\obj\Release\Model.pdb
-E:\CNCEC\CNCECHSSE\CNCECHSSE\Model\bin\Release\Model.dll
-E:\CNCEC\CNCECHSSE\CNCECHSSE\Model\bin\Release\Model.pdb
-E:\CNCEC\CNCECHSSE\CNCECHSSE\Model\obj\Release\Model.dll
-E:\CNCEC\CNCECHSSE\CNCECHSSE\Model\obj\Release\Model.pdb
-D:\ExtJs\SGGL\Model\bin\Release\Model.dll
-D:\ExtJs\SGGL\Model\bin\Release\Model.pdb
-D:\ExtJs\SGGL\Model\obj\Release\ResolveAssemblyReference.cache
-D:\ExtJs\SGGL\Model\obj\Release\Model.dll
-D:\ExtJs\SGGL\Model\obj\Release\Model.pdb
-D:\ExtJs\SGGL\SGGL\Model\bin\Release\Model.dll
-D:\ExtJs\SGGL\SGGL\Model\bin\Release\Model.pdb
-D:\ExtJs\SGGL\SGGL\Model\obj\Release\ResolveAssemblyReference.cache
-D:\ExtJs\SGGL\SGGL\Model\obj\Release\Model.dll
-D:\ExtJs\SGGL\SGGL\Model\obj\Release\Model.pdb
-H:\工作\SGGL_New\SGGL\SGGL\Model\bin\Release\Model.dll
-H:\工作\SGGL_New\SGGL\SGGL\Model\bin\Release\Model.pdb
-H:\工作\SGGL_New\SGGL\SGGL\Model\obj\Release\ResolveAssemblyReference.cache
-H:\工作\SGGL_New\SGGL\SGGL\Model\obj\Release\Model.dll
-H:\工作\SGGL_New\SGGL\SGGL\Model\obj\Release\Model.pdb
-D:\ExtJs\SGGL_NB\SGGL\Model\bin\Release\Model.dll
-D:\ExtJs\SGGL_NB\SGGL\Model\bin\Release\Model.pdb
-D:\ExtJs\SGGL_NB\SGGL\Model\obj\Release\ResolveAssemblyReference.cache
-D:\ExtJs\SGGL_NB\SGGL\Model\obj\Release\Model.dll
-D:\ExtJs\SGGL_NB\SGGL\Model\obj\Release\Model.pdb
-D:\开发代码\SGGL_NB\SGGL\Model\bin\Release\Model.dll
-D:\开发代码\SGGL_NB\SGGL\Model\bin\Release\Model.pdb
-D:\开发代码\SGGL_NB\SGGL\Model\obj\Release\Model.dll
-D:\开发代码\SGGL_NB\SGGL\Model\obj\Release\Model.pdb
-D:\开发代码\SGGL_NBBAK\SGGL\Model\bin\Release\Model.dll
-D:\开发代码\SGGL_NBBAK\SGGL\Model\bin\Release\Model.pdb
-D:\开发代码\SGGL_NBBAK\SGGL\Model\obj\Release\Model.dll
-D:\开发代码\SGGL_NBBAK\SGGL\Model\obj\Release\Model.pdb
-D:\开发代码\SGGL_NB_\SGGL\Model\bin\Release\Model.dll
-D:\开发代码\SGGL_NB_\SGGL\Model\bin\Release\Model.pdb
-D:\开发代码\SGGL_NB_\SGGL\Model\obj\Release\Model.dll
-D:\开发代码\SGGL_NB_\SGGL\Model\obj\Release\Model.pdb
-D:\开发代码\宁波\SGGL_NB_\SGGL\Model\bin\Release\Model.dll
-D:\开发代码\宁波\SGGL_NB_\SGGL\Model\bin\Release\Model.pdb
-D:\开发代码\宁波\SGGL_NB_\SGGL\Model\obj\Release\Model.dll
-D:\开发代码\宁波\SGGL_NB_\SGGL\Model\obj\Release\Model.pdb
-D:\开发代码\宁波\SGGL(NB)\SGGL\Model\bin\Release\Model.dll
-D:\开发代码\宁波\SGGL(NB)\SGGL\Model\bin\Release\Model.pdb
-D:\开发代码\宁波\SGGL(NB)\SGGL\Model\obj\Release\Model.dll
-D:\开发代码\宁波\SGGL(NB)\SGGL\Model\obj\Release\Model.pdb
-D:\开发代码\SGGL(NB)\SGGL\Model\bin\Release\Model.dll
-D:\开发代码\SGGL(NB)\SGGL\Model\bin\Release\Model.pdb
-D:\开发代码\SGGL(NB)\SGGL\Model\obj\Release\Model.dll
-D:\开发代码\SGGL(NB)\SGGL\Model\obj\Release\Model.pdb
-H:\工作\宁波石化平台\SGGL_NB\SGGL\Model\bin\Release\Model.dll
-H:\工作\宁波石化平台\SGGL_NB\SGGL\Model\bin\Release\Model.pdb
-H:\工作\宁波石化平台\SGGL_NB\SGGL\Model\obj\Release\Model.dll
-H:\工作\宁波石化平台\SGGL_NB\SGGL\Model\obj\Release\Model.pdb
-D:\ExtJs\HJGL\SGGL\Model\bin\Release\Model.dll
-D:\ExtJs\HJGL\SGGL\Model\bin\Release\Model.pdb
-D:\ExtJs\HJGL\SGGL\Model\obj\Release\Model.dll
-D:\ExtJs\HJGL\SGGL\Model\obj\Release\Model.pdb
-H:\工作\镇海焊接\HJGL_2017.11.30\SGGL\Model\bin\Release\Model.dll
-H:\工作\镇海焊接\HJGL_2017.11.30\SGGL\Model\bin\Release\Model.pdb
-H:\工作\镇海焊接\HJGL_2017.11.30\SGGL\Model\obj\Release\Model.dll
-H:\工作\镇海焊接\HJGL_2017.11.30\SGGL\Model\obj\Release\Model.pdb
-H:\工作\镇海焊接\HJGL_2017.12.15.002\SGGL\Model\bin\Release\Model.dll
-H:\工作\镇海焊接\HJGL_2017.12.15.002\SGGL\Model\bin\Release\Model.pdb
-H:\工作\镇海焊接\HJGL_2017.12.15.002\SGGL\Model\obj\Release\Model.dll
-H:\工作\镇海焊接\HJGL_2017.12.15.002\SGGL\Model\obj\Release\Model.pdb
-H:\工作\镇海焊接\SGGL\Model\bin\Release\Model.dll
-H:\工作\镇海焊接\SGGL\Model\bin\Release\Model.pdb
-H:\工作\镇海焊接\SGGL\Model\obj\Release\Model.dll
-H:\工作\镇海焊接\SGGL\Model\obj\Release\Model.pdb
-H:\工作\镇海焊接\HJGL_2018.02.24\SGGL\Model\bin\Release\Model.dll
-H:\工作\镇海焊接\HJGL_2018.02.24\SGGL\Model\bin\Release\Model.pdb
-H:\工作\镇海焊接\HJGL_2018.02.24\SGGL\Model\obj\Release\Model.dll
-H:\工作\镇海焊接\HJGL_2018.02.24\SGGL\Model\obj\Release\Model.pdb
-E:\工作\镇海焊接\SGGL\Model\bin\Release\Model.dll
-E:\工作\镇海焊接\SGGL\Model\bin\Release\Model.pdb
-E:\工作\镇海焊接\SGGL\Model\obj\Release\Model.dll
-E:\工作\镇海焊接\SGGL\Model\obj\Release\Model.pdb
-E:\ExtJs\HJGL\SGGL\Model\bin\Release\Model.dll
-E:\ExtJs\HJGL\SGGL\Model\bin\Release\Model.pdb
-E:\ExtJs\HJGL\SGGL\Model\obj\Release\Model.dll
-E:\ExtJs\HJGL\SGGL\Model\obj\Release\Model.pdb
-E:\ExtJs\HJGL\SGGL\Model\obj\Release\Model.csproj.CoreCompileInputs.cache
-D:\MyProject\ZHJA\HJGL\SGGL\Model\bin\Release\Model.dll
-D:\MyProject\ZHJA\HJGL\SGGL\Model\bin\Release\Model.pdb
-D:\MyProject\ZHJA\HJGL\SGGL\Model\obj\Release\Model.csproj.CoreCompileInputs.cache
-D:\MyProject\ZHJA\HJGL\SGGL\Model\obj\Release\Model.dll
-D:\MyProject\ZHJA\HJGL\SGGL\Model\obj\Release\Model.pdb
-D:\MyProject\ZHNew\HJGL\SGGL\Model\bin\Release\Model.dll
-D:\MyProject\ZHNew\HJGL\SGGL\Model\bin\Release\Model.pdb
-D:\MyProject\ZHNew\HJGL\SGGL\Model\obj\Release\Model.csproj.CoreCompileInputs.cache
-D:\MyProject\ZHNew\HJGL\SGGL\Model\obj\Release\Model.dll
-D:\MyProject\ZHNew\HJGL\SGGL\Model\obj\Release\Model.pdb
-E:\工作\镇海焊接\SGGL_New_2019.09.23\SGGL\Model\bin\Release\Model.dll
-E:\工作\镇海焊接\SGGL_New_2019.09.23\SGGL\Model\bin\Release\Model.pdb
-E:\工作\镇海焊接\SGGL_New_2019.09.23\SGGL\Model\obj\Release\Model.csproj.CoreCompileInputs.cache
-E:\工作\镇海焊接\SGGL_New_2019.09.23\SGGL\Model\obj\Release\Model.dll
-E:\工作\镇海焊接\SGGL_New_2019.09.23\SGGL\Model\obj\Release\Model.pdb
-E:\工作\镇海焊接\SGGL_New\SGGL\Model\bin\Release\Model.dll
-E:\工作\镇海焊接\SGGL_New\SGGL\Model\bin\Release\Model.pdb
-E:\工作\镇海焊接\SGGL_New\SGGL\Model\obj\Release\Model.csproj.CoreCompileInputs.cache
-E:\工作\镇海焊接\SGGL_New\SGGL\Model\obj\Release\Model.dll
-E:\工作\镇海焊接\SGGL_New\SGGL\Model\obj\Release\Model.pdb
-D:\MyProject\ZHNew\HJGL_ZH\HJGL_ZH\Model\bin\Release\Model.dll
-D:\MyProject\ZHNew\HJGL_ZH\HJGL_ZH\Model\bin\Release\Model.pdb
-D:\MyProject\ZHNew\HJGL_ZH\HJGL_ZH\Model\obj\Release\Model.csproj.CoreCompileInputs.cache
-D:\MyProject\ZHNew\HJGL_ZH\HJGL_ZH\Model\obj\Release\Model.dll
-D:\MyProject\ZHNew\HJGL_ZH\HJGL_ZH\Model\obj\Release\Model.pdb
-E:\工作\镇海焊接\HJGL_ZH\Model\bin\Release\Model.dll
-E:\工作\镇海焊接\HJGL_ZH\Model\bin\Release\Model.pdb
-E:\工作\镇海焊接\HJGL_ZH\Model\obj\Release\Model.csprojAssemblyReference.cache
-E:\工作\镇海焊接\HJGL_ZH\Model\obj\Release\Model.csproj.CoreCompileInputs.cache
-E:\工作\镇海焊接\HJGL_ZH\Model\obj\Release\Model.dll
-E:\工作\镇海焊接\HJGL_ZH\Model\obj\Release\Model.pdb
-E:\工作\镇海焊接\SGGL\Model\obj\Release\Model.csproj.CoreCompileInputs.cache
-D:\MyNewProject\ZHJA\HJGL_ZH\Model\bin\Release\Model.dll
-D:\MyNewProject\ZHJA\HJGL_ZH\Model\bin\Release\Model.pdb
-D:\MyNewProject\ZHJA\HJGL_ZH\Model\obj\Release\Model.csproj.CoreCompileInputs.cache
-D:\MyNewProject\ZHJA\HJGL_ZH\Model\obj\Release\Model.dll
-D:\MyNewProject\ZHJA\HJGL_ZH\Model\obj\Release\Model.pdb
-D:\MyProject\ZHHJ\JA\HJGL_ZH\Model\bin\Release\Model.dll
-D:\MyProject\ZHHJ\JA\HJGL_ZH\Model\bin\Release\Model.pdb
-D:\MyProject\ZHHJ\JA\HJGL_ZH\Model\obj\Release\Model.csproj.CoreCompileInputs.cache
-D:\MyProject\ZHHJ\JA\HJGL_ZH\Model\obj\Release\Model.dll
-D:\MyProject\ZHHJ\JA\HJGL_ZH\Model\obj\Release\Model.pdb
-E:\MyProject\ZHHJ\JA\HJGL_ZH\Model\bin\Release\Model.dll
-E:\MyProject\ZHHJ\JA\HJGL_ZH\Model\bin\Release\Model.pdb
-E:\MyProject\ZHHJ\JA\HJGL_ZH\Model\obj\Release\Model.csproj.CoreCompileInputs.cache
-E:\MyProject\ZHHJ\JA\HJGL_ZH\Model\obj\Release\Model.dll
-E:\MyProject\ZHHJ\JA\HJGL_ZH\Model\obj\Release\Model.pdb
-E:\MyProject\ZHHJ\JA\HJGL_ZH\Model\obj\Release\Model.csprojAssemblyReference.cache
-D:\数据\诺必达\镇海建安\ZHJA_HJGL\HJGL_ZH\Model\bin\Release\Model.dll
-D:\数据\诺必达\镇海建安\ZHJA_HJGL\HJGL_ZH\Model\bin\Release\Model.pdb
-D:\数据\诺必达\镇海建安\ZHJA_HJGL\HJGL_ZH\Model\obj\Release\Model.csproj.AssemblyReference.cache
-D:\数据\诺必达\镇海建安\ZHJA_HJGL\HJGL_ZH\Model\obj\Release\Model.csproj.CoreCompileInputs.cache
-D:\数据\诺必达\镇海建安\ZHJA_HJGL\HJGL_ZH\Model\obj\Release\Model.dll
-D:\数据\诺必达\镇海建安\ZHJA_HJGL\HJGL_ZH\Model\obj\Release\Model.pdb
diff --git a/HJGL_ZH/Model/obj/Release/Model.dll b/HJGL_ZH/Model/obj/Release/Model.dll
deleted file mode 100644
index fbf7897..0000000
Binary files a/HJGL_ZH/Model/obj/Release/Model.dll and /dev/null differ
diff --git a/HJGL_ZH/Model/obj/Release/Model.pdb b/HJGL_ZH/Model/obj/Release/Model.pdb
deleted file mode 100644
index 980ad8f..0000000
Binary files a/HJGL_ZH/Model/obj/Release/Model.pdb and /dev/null differ
diff --git a/HJGL_ZH/WebAPI/WebAPI.csproj b/HJGL_ZH/WebAPI/WebAPI.csproj
index 0d11219..bae35f2 100644
--- a/HJGL_ZH/WebAPI/WebAPI.csproj
+++ b/HJGL_ZH/WebAPI/WebAPI.csproj
@@ -14,7 +14,7 @@
Properties
WebAPI
WebAPI
- v4.6.1
+ v4.8
false
true
@@ -25,6 +25,7 @@
+
true
@@ -48,14 +49,14 @@
+
+
-
-
-
+
@@ -109,6 +110,7 @@
True
..\packages\Microsoft.AspNet.WebPages.3.2.4\lib\net45\System.Web.WebPages.Razor.dll
+
True
..\packages\WebGrease.1.6.0\lib\WebGrease.dll
diff --git a/HJGL_ZH/WebAPI/WebAPI.csproj.user b/HJGL_ZH/WebAPI/WebAPI.csproj.user
index ca0d73e..643f3e5 100644
--- a/HJGL_ZH/WebAPI/WebAPI.csproj.user
+++ b/HJGL_ZH/WebAPI/WebAPI.csproj.user
@@ -8,7 +8,7 @@
- Debug|Any CPU
+ Release|Any CPU