diff --git a/DataBase/版本日志/SGGLDB_WH_2024-03-22-bwj.sql b/DataBase/版本日志/SGGLDB_WH_2024-03-22-bwj.sql
new file mode 100644
index 00000000..7c52ec68
--- /dev/null
+++ b/DataBase/版本日志/SGGLDB_WH_2024-03-22-bwj.sql
@@ -0,0 +1,45 @@
+
+CREATE TABLE [dbo].[Report_CQMS_MonthReportItem](
+ [Id] [nvarchar](50) NOT NULL,
+ [ReportId] [nvarchar](50) NULL,
+ [ReType] [nvarchar](20) NULL,
+ [ContentName] [nvarchar](50) NULL,
+ [MonthsCount] [int] NULL,
+ [ProjectCount] [int] NULL,
+ [RectificationRate] [nvarchar](50) NULL,
+ [MonthsBackCount] [int] NULL,
+ [TotalNoBackCount] [int] NULL,
+ [Remarks] [nvarchar](500) NULL,
+ CONSTRAINT [PK_Report_CQMS_MonthReportItem] PRIMARY KEY CLUSTERED
+(
+ [Id] ASC
+)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
+) ON [PRIMARY]
+GO
+
+EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ࣨ1-15.Ѳ2-16.ר3-17.ļϱ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Report_CQMS_MonthReportItem', @level2type=N'COLUMN',@level2name=N'ReType'
+GO
+
+EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Report_CQMS_MonthReportItem', @level2type=N'COLUMN',@level2name=N'RectificationRate'
+GO
+
+EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ҵ/' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Report_CQMS_MonthReportItem', @level2type=N'COLUMN',@level2name=N'MonthsBackCount'
+GO
+
+EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ۼδ' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Report_CQMS_MonthReportItem', @level2type=N'COLUMN',@level2name=N'TotalNoBackCount'
+GO
+
+
+ALTER TABLE [dbo].[Report_RowMaterialProblem] DROP CONSTRAINT [FK_Report_RowMaterialProblem_Report_WeekAndMonthReport]
+GO
+
+ALTER TABLE [dbo].[Report_ConstructionProblems] DROP CONSTRAINT [FK_Report_ConstructionProblems_Report_WeekAndMonthReport]
+GO
+
+ALTER TABLE [dbo].[Report_NextQualityControl] DROP CONSTRAINT [FK_Report_NextQualityControl_Report_WeekAndMonthReport]
+GO
+
+ALTER TABLE [dbo].[Report_ConstructionProblems] DROP CONSTRAINT [FK_Report_ConstructionProblems_Base_Unit]
+GO
+
+
diff --git a/SGGL/BLL/BLL.csproj b/SGGL/BLL/BLL.csproj
index e8156113..5d03a702 100644
--- a/SGGL/BLL/BLL.csproj
+++ b/SGGL/BLL/BLL.csproj
@@ -261,6 +261,7 @@
+
diff --git a/SGGL/BLL/CQMS/ManageReport/ReportNew/Report_CQMS_MonthReportItemService.cs b/SGGL/BLL/CQMS/ManageReport/ReportNew/Report_CQMS_MonthReportItemService.cs
new file mode 100644
index 00000000..1c8c0745
--- /dev/null
+++ b/SGGL/BLL/CQMS/ManageReport/ReportNew/Report_CQMS_MonthReportItemService.cs
@@ -0,0 +1,52 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace BLL
+{
+ ///
+ /// 15.质量巡检情况
+ /// 16.质量专项检查情况
+ /// 17.质量文件上报情况
+ ///
+ public class Report_CQMS_MonthReportItemService
+ {
+ ///
+ /// 添加
+ ///
+ ///
+ public static void AddReportItem(Model.Report_CQMS_MonthReportItem item)
+ {
+ Model.Report_CQMS_MonthReportItem newItem = new Model.Report_CQMS_MonthReportItem
+ {
+ Id = item.Id,
+ ReportId = item.ReportId,
+ ReType = item.ReType,
+ ContentName = item.ContentName,
+ MonthsCount = item.MonthsCount,
+ ProjectCount = item.ProjectCount,
+ RectificationRate = item.RectificationRate,
+ MonthsBackCount = item.MonthsBackCount,
+ TotalNoBackCount = item.TotalNoBackCount
+ };
+ Funs.DB.Report_CQMS_MonthReportItem.InsertOnSubmit(newItem);
+ Funs.DB.SubmitChanges();
+ }
+
+ ///
+ /// 根据月报id删除相关明细信息
+ ///
+ ///
+ public static void DeleteReportItemByReportId(string reportId)
+ {
+ var q = (from x in Funs.DB.Report_CQMS_MonthReportItem where x.ReportId == reportId select x).ToList();
+ if (q.Count > 0)
+ {
+ Funs.DB.Report_CQMS_MonthReportItem.DeleteAllOnSubmit(q);
+ Funs.DB.SubmitChanges();
+ }
+ }
+ }
+}
diff --git a/SGGL/BLL/Common/Const.cs b/SGGL/BLL/Common/Const.cs
index bae72db3..51434d29 100644
--- a/SGGL/BLL/Common/Const.cs
+++ b/SGGL/BLL/Common/Const.cs
@@ -3236,6 +3236,10 @@ namespace BLL
///
public const string DriverSubContactTemplateUrl = "File\\Excel\\TestRun\\开车合作单位名录.xlsx";
+ ///
+ /// 新项目质量月报模板文件原始虚拟路径
+ ///
+ public const string MonthReportNewTemplateUrl = "File\\Word\\CQMS\\项目质量月报.doc";
#endregion
#region 绩效考核模板文件路径
diff --git a/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionTestPlan.aspx b/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionTestPlan.aspx
index 9792a0bd..61249dbd 100644
--- a/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionTestPlan.aspx
+++ b/SGGL/FineUIPro.Web/CQMS/Comprehensive/InspectionTestPlan.aspx
@@ -67,9 +67,9 @@
-
-
+ --%>
-
+
-
+
diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReport.aspx b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReport.aspx
index d29af678..a820844e 100644
--- a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReport.aspx
+++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReport.aspx
@@ -61,6 +61,9 @@
+
+
+
+
+
+
+
+ <%--15.质量巡检情况--%>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <%--16.质量专项检查情况--%>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <%--17.质量文件上报情况--%>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <%--18.本月质量问题处理情况--%>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <%--19.下月质量控制重点--%>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
<%--20.项目质量体系审核--%>
diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.cs b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.cs
index 38c58b0c..29e05755 100644
--- a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.cs
+++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.cs
@@ -42,6 +42,23 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
#region 列表集合
private static List detailsGrid1 = new List();
+
+ ///
+ /// 18.本月质量问题处理情况
+ /// (1)原材料问题
+ ///
+ private static List rowMaterialProblemLists = new List();
+
+ ///
+ /// 18.本月质量问题处理情况
+ /// (2)施工过程问题
+ ///
+ private static List constructionProblemsLists = new List();
+
+ ///
+ /// 19.下月质量控制重点
+ ///
+ private static List nextQualityControlLists = new List();
#endregion
#region 加载页面
@@ -121,6 +138,43 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
}
#endregion
+ #region 加载18.本月质量问题处理情况
+ //(1)原材料问题
+ rowMaterialProblemLists.Clear();
+ rowMaterialProblemLists = (from x in Funs.DB.Report_RowMaterialProblem
+ where x.ReportId == this.ReportId
+ select x).ToList();
+ if (rowMaterialProblemLists.Count > 0)
+ {
+ gvRowMaterialProblem.Hidden = false;
+ gvRowMaterialProblem.DataSource = rowMaterialProblemLists;
+ gvRowMaterialProblem.DataBind();
+ }
+ //(2)施工过程问题
+ constructionProblemsLists.Clear();
+ constructionProblemsLists = (from x in Funs.DB.Report_ConstructionProblems
+ where x.ReportId == this.ReportId
+ select x).ToList();
+ if (constructionProblemsLists.Count > 0)
+ {
+ gvConstructionProblems.Hidden = false;
+ gvConstructionProblems.DataSource = constructionProblemsLists;
+ gvConstructionProblems.DataBind();
+ }
+ #endregion
+
+ #region 加载19.下月质量控制重点
+ nextQualityControlLists.Clear();
+ nextQualityControlLists = (from x in Funs.DB.Report_NextQualityControl
+ where x.ReportId == this.ReportId
+ select x).ToList();
+ if (nextQualityControlLists.Count > 0)
+ {
+ gvNextQualityControl.Hidden = false;
+ gvNextQualityControl.DataSource = nextQualityControlLists;
+ gvNextQualityControl.DataBind();
+ }
+ #endregion
#region 加载文本框内容
var txtReportList = Funs.DB.Report_TextBoxContent.Where(x => x.ReportId == ReportId).ToList();
@@ -190,6 +244,13 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
//8 设备报验管理Grid11
LoadInspectionEquipment(objType);
+
+ //加载15.质量巡检情况
+ loadQualityInspection(objType);
+ //加载16.质量专项检查情况
+ loadSpecialCheck(objType);
+ //加载17.质量文件上报情况
+ loadFileReport(objType);
}
#endregion
@@ -1283,6 +1344,386 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
}
#endregion
+ #region 15.质量巡检情况 gvQualityInspection方法
+ ///
+ /// 加载质量巡检情况
+ ///
+ void loadQualityInspection(string objType)
+ {
+ var db = Funs.DB;
+ DateTime startDate = Convert.ToDateTime(this.txtStartDate.Text.Trim());
+ DateTime endDate = Convert.ToDateTime(this.txtEndDate.Text.Trim());
+ var list = new List();
+ int i = 1;
+
+ int Quantity1Sum = 0;
+ int Quantity2Sum = 0;
+ //加载所有单位
+ var units = from x in Funs.DB.Project_ProjectUnit
+ join y in Funs.DB.Base_Unit on x.UnitId equals y.UnitId
+ where x.ProjectId == this.CurrUser.LoginProjectId && (x.UnitType == BLL.Const.ProjectUnitType_2 || x.UnitType == BLL.Const.ProjectUnitType_1)
+ orderby y.UnitCode
+ select new { x.UnitId, y.UnitName };
+ foreach (var item in units)
+ {
+ var query = from c in db.Check_CheckControl
+ join u in db.Base_Unit on c.UnitId equals u.UnitId into unitJoin
+ from u in unitJoin.DefaultIfEmpty()
+ where c.ProjectId == this.CurrUser.LoginProjectId && c.UnitId == item.UnitId
+ select new
+ {
+ c.CheckDate,
+ c.ProjectId,
+ u.UnitId,
+ u.UnitName
+ };
+ var AllList = query.ToList();
+ var monethCount = query
+ .Where(x => (x.CheckDate >= Convert.ToDateTime(startDate) && x.CheckDate <= Convert.ToDateTime(endDate)));
+
+ Model.Report_CQMS_MonthReportItem model = new Model.Report_CQMS_MonthReportItem();
+ model.Id = Guid.NewGuid().ToString();
+ model.ContentName = item.UnitName;
+ model.MonthsCount = monethCount.Count();
+ model.ProjectCount = AllList.Count();
+ model.ReportId = ReportId;
+ //如果是修改,查询表中数据
+ if (objType == "1")
+ {
+ var NewModel = db.Report_CQMS_MonthReportItem.FirstOrDefault(x => x.ReportId == ReportId && x.ContentName == item.UnitName && x.ReType == "1");
+ if (NewModel != null)
+ {
+ model.RectificationRate = NewModel.RectificationRate;
+ model.Remarks = NewModel.Remarks;
+ }
+ }
+ list.Add(model);
+
+ Quantity1Sum += monethCount.Count();
+ Quantity2Sum += AllList.Count();
+ i++;
+ }
+ gvQualityInspection.DataSource = list;
+ gvQualityInspection.DataBind();
+
+ //合计
+ JObject summary = new JObject();
+ summary.Add("ContentName", "合计");
+ summary.Add("MonthsCount", Quantity1Sum.ToString());
+ summary.Add("ProjectCount", Quantity2Sum.ToString());
+
+ gvQualityInspection.SummaryData = summary;
+ }
+ #endregion
+
+ #region 16.质量专项检查情况 gvSpecialCheck方法
+ ///
+ /// 加载质量专项检查情况
+ ///
+ void loadSpecialCheck(string objType)
+ {
+ var db = Funs.DB;
+ DateTime startDate = Convert.ToDateTime(this.txtStartDate.Text.Trim());
+ DateTime endDate = Convert.ToDateTime(this.txtEndDate.Text.Trim());
+ var list = new List();
+ int i = 1;
+
+ int Quantity1Sum = 0;
+ int Quantity2Sum = 0;
+
+ //加载检查类别
+ var lists = BLL.JointCheckService.GetCheckTypeList();
+ foreach (var item in lists)
+ {
+ var query = from c in db.Check_JointCheck
+ where c.ProjectId == this.CurrUser.LoginProjectId && c.CheckType == item.Key.ToString()
+ select new
+ {
+ c.CheckDate,
+ c.ProjectId,
+ c.CheckType
+ };
+ var AllList = query.ToList();
+ var monethCount = query
+ .Where(x => (x.CheckDate >= Convert.ToDateTime(startDate) && x.CheckDate <= Convert.ToDateTime(endDate)));
+
+ Model.Report_CQMS_MonthReportItem model = new Model.Report_CQMS_MonthReportItem();
+ model.Id = Guid.NewGuid().ToString();
+ model.ContentName = item.Value;
+ model.MonthsCount = monethCount.Count();
+ model.ProjectCount = AllList.Count();
+ model.ReportId = ReportId;
+ //如果是修改,查询表中数据
+ if (objType == "1")
+ {
+ var NewModel = db.Report_CQMS_MonthReportItem.FirstOrDefault(x => x.ReportId == ReportId && x.ContentName == item.Value && x.ReType == "2");
+ if (NewModel != null)
+ {
+ model.Remarks = NewModel.Remarks;
+ }
+ }
+ list.Add(model);
+
+ Quantity1Sum += monethCount.Count();
+ Quantity2Sum += AllList.Count();
+ i++;
+ }
+
+ gvSpecialCheck.DataSource = list;
+ gvSpecialCheck.DataBind();
+
+ //合计
+ JObject summary = new JObject();
+ summary.Add("ContentName", "合计");
+ summary.Add("MonthsCount", Quantity1Sum.ToString());
+ summary.Add("ProjectCount", Quantity2Sum.ToString());
+
+ gvSpecialCheck.SummaryData = summary;
+ }
+ #endregion
+
+ #region 17.质量文件上报情况 gvFileReport方法
+ ///
+ /// 加载质量文件上报情况
+ ///
+ void loadFileReport(string objType)
+ {
+ var db = Funs.DB;
+ DateTime startDate = Convert.ToDateTime(this.txtStartDate.Text.Trim());
+ DateTime endDate = Convert.ToDateTime(this.txtEndDate.Text.Trim());
+ var list = new List();
+ int i = 1;
+
+ int Quantity1Sum = 0;
+ int Quantity2Sum = 0;
+ int Quantity3Sum = 0;
+ int Quantity4Sum = 0;
+ //加载所有单位
+ var units = from x in Funs.DB.Project_ProjectUnit
+ join y in Funs.DB.Base_Unit on x.UnitId equals y.UnitId
+ where x.ProjectId == this.CurrUser.LoginProjectId && (x.UnitType == BLL.Const.ProjectUnitType_2 || x.UnitType == BLL.Const.ProjectUnitType_1)
+ orderby y.UnitCode
+ select new { x.UnitId, y.UnitName };
+ foreach (var item in units)
+ {
+ //var query = from c in db.Check_CheckControl
+ // join u in db.Base_Unit on c.UnitId equals u.UnitId into unitJoin
+ // from u in unitJoin.DefaultIfEmpty()
+ // where c.ProjectId == this.CurrUser.LoginProjectId && c.UnitId == item.UnitId
+ // select new
+ // {
+ // c.CheckDate,
+ // c.ProjectId,
+ // u.UnitId,
+ // u.UnitName
+ // };
+ //var AllList = query.ToList();//项目数
+ //本月数
+ //var monethCount = query.Where(x => (x.CheckDate >= Convert.ToDateTime(startDate) && x.CheckDate <= Convert.ToDateTime(endDate)));
+ //var yzCount = 0;//本月业主/ 监理返回数量
+ //var NoBackCount = 0;//累计未返回数量
+ Model.Report_CQMS_MonthReportItem model = new Model.Report_CQMS_MonthReportItem();
+ model.Id = Guid.NewGuid().ToString();
+ model.ContentName = item.UnitName;
+ //model.MonthsCount = monethCount.Count();
+ //model.ProjectCount = AllList.Count();
+ //model.MonthsBackCount =;
+ //model.TotalNoBackCount =;
+ model.ReportId = ReportId;
+ //如果是修改,查询表中数据
+ if (objType == "1")
+ {
+ var NewModel = db.Report_CQMS_MonthReportItem.FirstOrDefault(x => x.ReportId == ReportId && x.ContentName == item.UnitName && x.ReType == "3");
+ if (NewModel != null)
+ {
+ model.Remarks = NewModel.Remarks;
+ }
+ }
+ list.Add(model);
+
+ //Quantity1Sum += monethCount.Count();
+ //Quantity2Sum += AllList.Count();
+ //Quantity3Sum += yzCount.Count();
+ //Quantity4Sum += NoBackCount.Count();
+ i++;
+ }
+ gvFileReport.DataSource = list;
+ gvFileReport.DataBind();
+
+ //合计
+ JObject summary = new JObject();
+ summary.Add("ContentName", "合计");
+ summary.Add("MonthsCount", Quantity1Sum.ToString());
+ summary.Add("ProjectCount", Quantity2Sum.ToString());
+ summary.Add("MonthsBackCount", Quantity3Sum.ToString());
+ summary.Add("TotalNoBackCount", Quantity4Sum.ToString());
+
+ gvFileReport.SummaryData = summary;
+ }
+ #endregion
+
+ #region 18.本月质量问题处理情况
+ #region gvRowMaterialProblem 事件
+ ///
+ /// 增加原材料问题
+ ///
+ ///
+ ///
+ protected void btnRowMaterialProblem_Click(object sender, EventArgs e)
+ {
+ gvRowMaterialProblem.Hidden = false;
+
+ JArray teamGroupData = gvRowMaterialProblem.GetMergedData();
+ List list = new List();
+ foreach (JObject teamGroupRow in teamGroupData)
+ {
+ JObject values = teamGroupRow.Value("values");
+ values.Add("Id", teamGroupRow.Value("id"));
+ list.Add(values);
+ }
+ JObject defaultObj = new JObject
+ { { "RowMaterialProblemId",Guid.NewGuid().ToString() },
+ { "ReportId", ReportId },
+ { "UnitId", "" },
+ { "ProblemDesrioption",""},
+ { "TreatmentMeasures", "" },
+ { "ProcessingResults","" },
+ { "Remark", "" },
+ { "delRowMaterialProblem", String.Format("
", GetDeleteRowMaterialProblem(), IconHelper.GetResolvedIconUrl(Icon.Delete)) }
+ };
+ list.Add(defaultObj);
+ gvRowMaterialProblem.DataSource = list;
+ gvRowMaterialProblem.DataBind();
+ }
+
+ ///
+ /// 绑定数据前事件
+ ///
+ ///
+ ///
+ protected void gvRowMaterialProblem_PreDataBound(object sender, EventArgs e)
+ {
+ // 设置LinkButtonField的点击客户端事件
+ LinkButtonField deleteField = gvRowMaterialProblem.FindColumn("delRowMaterialProblem") as LinkButtonField;
+ deleteField.OnClientClick = GetDeleteRowMaterialProblem();
+ }
+ ///
+ /// 删除提示
+ ///
+ ///
+ private string GetDeleteRowMaterialProblem()
+ {
+ return Confirm.GetShowReference("删除选中行?", String.Empty, MessageBoxIcon.Question, gvRowMaterialProblem.GetDeleteSelectedRowsReference(), String.Empty);
+ }
+ #endregion
+
+ #region gvConstructionProblems 事件
+ ///
+ /// 增加施工过程问题
+ ///
+ ///
+ ///
+ protected void btnAddConstructionProblems_Click(object sender, EventArgs e)
+ {
+ gvConstructionProblems.Hidden = false;
+
+ JArray teamGroupData = gvConstructionProblems.GetMergedData();
+ List list = new List();
+ foreach (JObject teamGroupRow in teamGroupData)
+ {
+ JObject values = teamGroupRow.Value("values");
+ values.Add("Id", teamGroupRow.Value("id"));
+ list.Add(values);
+ }
+ JObject defaultObj = new JObject
+ { { "ConstructionProblemsId",Guid.NewGuid() },
+ { "ReportId", ReportId },
+ { "UnitId", "" },
+ { "ProblemDesrioption",""},
+ { "TreatmentMeasures", "" },
+ { "ProcessingResults","" },
+ { "Remark", "" },
+ { "delConstructionProblems", String.Format("
", GetDeleteConstructionProblems(), IconHelper.GetResolvedIconUrl(Icon.Delete)) }
+ };
+ list.Add(defaultObj);
+ gvConstructionProblems.DataSource = list;
+ gvConstructionProblems.DataBind();
+ }
+
+ ///
+ /// 绑定数据前事件
+ ///
+ ///
+ ///
+ protected void gvConstructionProblems_PreDataBound(object sender, EventArgs e)
+ {
+ // 设置LinkButtonField的点击客户端事件
+ LinkButtonField deleteField = gvConstructionProblems.FindColumn("delConstructionProblems") as LinkButtonField;
+ deleteField.OnClientClick = GetDeleteConstructionProblems();
+ }
+
+ ///
+ /// 删除提示
+ ///
+ ///
+ private string GetDeleteConstructionProblems()
+ {
+ return Confirm.GetShowReference("删除选中行?", String.Empty, MessageBoxIcon.Question, gvConstructionProblems.GetDeleteSelectedRowsReference(), String.Empty);
+ }
+ #endregion
+ #endregion
+
+ #region 19.下月质量控制重点
+ ///
+ /// gvNextQualityControl加载前事件
+ ///
+ ///
+ ///
+ protected void gvNextQualityControl_PreDataBound(object sender, EventArgs e)
+ {
+ // 设置LinkButtonField的点击客户端事件
+ LinkButtonField deleteField = gvNextQualityControl.FindColumn("delNextQualityControl") as LinkButtonField;
+ deleteField.OnClientClick = GetDeleteNextQualityControl();
+ }
+
+ ///
+ /// 增加
+ ///
+ ///
+ ///
+ protected void btnAddNextControl_Click(object sender, EventArgs e)
+ {
+ gvNextQualityControl.Hidden = false;
+
+ JArray teamGroupData = gvNextQualityControl.GetMergedData();
+ List list = new List();
+ foreach (JObject teamGroupRow in teamGroupData)
+ {
+ JObject values = teamGroupRow.Value("values");
+ values.Add("Id", teamGroupRow.Value("id"));
+ list.Add(values);
+ }
+ JObject defaultObj = new JObject
+ { { "NextQualityControlId",Guid.NewGuid().ToString() },
+ { "ReportId", ReportId },
+ { "NextQualityControlContent", "" },
+ { "delNextQualityControl", String.Format("
", GetDeleteNextQualityControl(), IconHelper.GetResolvedIconUrl(Icon.Delete)) }
+ };
+ list.Add(defaultObj);
+ gvNextQualityControl.DataSource = list;
+ gvNextQualityControl.DataBind();
+ }
+
+ ///
+ /// 删除提示
+ ///
+ ///
+ private string GetDeleteNextQualityControl()
+ {
+ return Confirm.GetShowReference("删除选中行?", String.Empty, MessageBoxIcon.Question, gvNextQualityControl.GetDeleteSelectedRowsReference(), String.Empty);
+ }
+ #endregion
+
#region 保存
///
/// 保存按钮
@@ -1326,6 +1767,16 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
//删除施工方案及检验试验计划审批情况
BLL.CQMS.ManageReport.ReportNew.ConstructionPlanService.Delete(ReportId);
+
+ // 15.质量巡检情况 16.质量专项检查情况 17.质量文件上报情况
+ BLL.Report_CQMS_MonthReportItemService.DeleteReportItemByReportId(ReportId);
+ //18.本月质量问题处理情况(1)原材料问题
+ BLL.RowMaterialProblemService.DeleteRowMaterialProbleByReportId(ReportId);
+ //18.本月质量问题处理情况(2)施工过程问题
+ BLL.ConstructionProblemsService.DeleteConstructionProblemsByReportId(ReportId);
+ //19.下月质量控制重点
+ BLL.NextQualityControlService.DeleteNextQualityControlByReportId(ReportId);
+
#endregion
#region 保存所有子表
@@ -1353,6 +1804,19 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
//保存8 设备材料报验管理情况
saveSbclBy();
+ //保存15.质量巡检情况
+ saveQualityInspection();
+ //保存16.质量专项检查情况
+ saveSpecialCheck();
+ //保存17.质量文件上报情况
+ saveFileReport();
+ //保存18.(1)原材料问题
+ saveRowMaterialProblem();
+ //保存18.(2)施工过程问题
+ saveConstructionProblems();
+ //保存19.下月质量控制重点
+ saveNextQualityControl();
+
//保存文本框
saveTxtContent();
#endregion
@@ -1705,8 +2169,217 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
Funs.DB.SubmitChanges();
}
+ #region 15.质量巡检情况
+ ///
+ /// 15.质量巡检情况
+ ///
+ void saveQualityInspection()
+ {
+ List detailLists = new List();
+ JArray teamGroupData = gvQualityInspection.GetMergedData();
+ foreach (JObject teamGroupRow in teamGroupData)
+ {
+ JObject values = teamGroupRow.Value("values");
+ int rowIndex = teamGroupRow.Value("index");
+ Model.Report_CQMS_MonthReportItem newDetail = new Model.Report_CQMS_MonthReportItem
+ {
+ ReportId = ReportId,
+ ReType = "1",
+ ContentName = values.Value("ContentName"),
+ MonthsCount = values.Value("MonthsCount"),
+ ProjectCount = values.Value("ProjectCount"),
+ RectificationRate = values.Value("RectificationRate"),
+ Remarks = values.Value("Remarks")
+ };
+ if (gvQualityInspection.Rows[rowIndex].DataKeys.Length > 0)
+ {
+ newDetail.Id = gvQualityInspection.Rows[rowIndex].DataKeys[0].ToString();
+ }
+ detailLists.Add(newDetail);
+ }
+ if (detailLists.Count > 0)
+ {
+ Funs.DB.Report_CQMS_MonthReportItem.InsertAllOnSubmit(detailLists);
+ Funs.DB.SubmitChanges();
+ }
+ }
#endregion
+ #region 16.质量专项检查情况
+ ///
+ /// 16.质量专项检查情况
+ ///
+ void saveSpecialCheck()
+ {
+ List detailLists = new List();
+ JArray teamGroupData = gvSpecialCheck.GetMergedData();
+ foreach (JObject teamGroupRow in teamGroupData)
+ {
+ JObject values = teamGroupRow.Value("values");
+ int rowIndex = teamGroupRow.Value("index");
+ Model.Report_CQMS_MonthReportItem newDetail = new Model.Report_CQMS_MonthReportItem
+ {
+ ReportId = ReportId,
+ ReType = "2",
+ ContentName = values.Value("ContentName"),
+ MonthsCount = values.Value("MonthsCount"),
+ ProjectCount = values.Value("ProjectCount"),
+ Remarks = values.Value("Remarks")
+ };
+ if (gvSpecialCheck.Rows[rowIndex].DataKeys.Length > 0)
+ {
+ newDetail.Id = gvSpecialCheck.Rows[rowIndex].DataKeys[0].ToString();
+ }
+ detailLists.Add(newDetail);
+ }
+ if (detailLists.Count > 0)
+ {
+ Funs.DB.Report_CQMS_MonthReportItem.InsertAllOnSubmit(detailLists);
+ Funs.DB.SubmitChanges();
+ }
+ }
+ #endregion
+
+ #region 17.质量文件上报情况
+ ///
+ /// 17.质量文件上报情况
+ ///
+ void saveFileReport()
+ {
+ List detailLists = new List();
+ JArray teamGroupData = gvFileReport.GetMergedData();
+ foreach (JObject teamGroupRow in teamGroupData)
+ {
+ JObject values = teamGroupRow.Value("values");
+ int rowIndex = teamGroupRow.Value("index");
+ Model.Report_CQMS_MonthReportItem newDetail = new Model.Report_CQMS_MonthReportItem
+ {
+ ReportId = ReportId,
+ ReType = "3",
+ ContentName = values.Value("ContentName"),
+ //MonthsCount = Funs.GetNewInt(values.Value("MonthsCount").ToString()),
+ //ProjectCount = Funs.GetNewInt(values.Value("ProjectCount").ToString()),
+ //MonthsBackCount = Funs.GetNewInt(values.Value("MonthsBackCount").ToString()),
+ //TotalNoBackCount = Funs.GetNewInt(values.Value("TotalNoBackCount").ToString())
+ };
+ if (gvFileReport.Rows[rowIndex].DataKeys.Length > 0)
+ {
+ newDetail.Id = gvFileReport.Rows[rowIndex].DataKeys[0].ToString();
+ }
+ detailLists.Add(newDetail);
+ }
+ if (detailLists.Count > 0)
+ {
+ Funs.DB.Report_CQMS_MonthReportItem.InsertAllOnSubmit(detailLists);
+ Funs.DB.SubmitChanges();
+ }
+ }
+ #endregion
+
+ #region 18.本月质量问题处理情况
+ ///
+ /// (1)原材料问题
+ ///
+ void saveRowMaterialProblem()
+ {
+ List detailLists = new List();
+ JArray teamGroupData = gvRowMaterialProblem.GetMergedData();
+ foreach (JObject teamGroupRow in teamGroupData)
+ {
+ JObject values = teamGroupRow.Value("values");
+ int rowIndex = teamGroupRow.Value("index");
+ Model.Report_RowMaterialProblem newDetail = new Model.Report_RowMaterialProblem
+ {
+ ReportId = ReportId,
+ UnitId = values.Value("UnitId"),
+ ProblemDesrioption = values.Value("ProblemDesrioption"),
+ TreatmentMeasures = values.Value("TreatmentMeasures"),
+ ProcessingResults = values.Value("ProcessingResults"),
+ Remark = values.Value("Remark")
+ };
+ if (gvRowMaterialProblem.Rows[rowIndex].DataKeys.Length > 0)
+ {
+ newDetail.RowMaterialProblemId = gvRowMaterialProblem.Rows[rowIndex].DataKeys[0].ToString();
+ }
+ detailLists.Add(newDetail);
+ }
+ if (detailLists.Count > 0)
+ {
+ Funs.DB.Report_RowMaterialProblem.InsertAllOnSubmit(detailLists);
+ Funs.DB.SubmitChanges();
+ }
+ }
+
+ ///
+ /// (2)施工过程问题
+ ///
+ void saveConstructionProblems()
+ {
+ List detailLists = new List();
+ JArray teamGroupData = gvConstructionProblems.GetMergedData();
+ foreach (JObject teamGroupRow in teamGroupData)
+ {
+ JObject values = teamGroupRow.Value("values");
+ int rowIndex = teamGroupRow.Value("index");
+ Model.Report_ConstructionProblems newDetail = new Model.Report_ConstructionProblems
+ {
+ ReportId = ReportId,
+ UnitId = values.Value("UnitId"),
+ ProblemDesrioption = values.Value("ProblemDesrioption"),
+ TreatmentMeasures = values.Value("TreatmentMeasures"),
+ ProcessingResults = values.Value("ProcessingResults"),
+ Remark = values.Value("Remark")
+ };
+ if (gvConstructionProblems.Rows[rowIndex].DataKeys.Length > 0)
+ {
+ newDetail.ConstructionProblemsId = gvConstructionProblems.Rows[rowIndex].DataKeys[0].ToString();
+ }
+ detailLists.Add(newDetail);
+ }
+ if (detailLists.Count > 0)
+ {
+ Funs.DB.Report_ConstructionProblems.InsertAllOnSubmit(detailLists);
+ Funs.DB.SubmitChanges();
+ }
+ }
+
+ #endregion
+
+ #region 19.下月质量控制重点
+ ///
+ /// 下月质量控制重点
+ ///
+ void saveNextQualityControl()
+ {
+ List detailLists = new List();
+ JArray teamGroupData = gvNextQualityControl.GetMergedData();
+ foreach (JObject teamGroupRow in teamGroupData)
+ {
+ JObject values = teamGroupRow.Value("values");
+ int rowIndex = teamGroupRow.Value("index");
+ Model.Report_NextQualityControl newDetail = new Model.Report_NextQualityControl
+ {
+ ReportId = ReportId,
+ NextQualityControlContent = values.Value("NextQualityControlContent")
+ };
+ if (gvNextQualityControl.Rows[rowIndex].DataKeys.Length > 0)
+ {
+ newDetail.NextQualityControlId = gvNextQualityControl.Rows[rowIndex].DataKeys[0].ToString();
+ }
+ detailLists.Add(newDetail);
+ }
+ if (detailLists.Count > 0)
+ {
+ Funs.DB.Report_NextQualityControl.InsertAllOnSubmit(detailLists);
+ Funs.DB.SubmitChanges();
+ }
+ }
+ #endregion
+
+ #endregion
+
+
+
}
}
\ No newline at end of file
diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.designer.cs b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.designer.cs
index b621669f..2163e253 100644
--- a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.designer.cs
+++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportEdit.aspx.designer.cs
@@ -788,6 +788,357 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
///
protected global::FineUIPro.TextArea txtAre8;
+ ///
+ /// Panel21 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Panel Panel21;
+
+ ///
+ /// Form20 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Form Form20;
+
+ ///
+ /// gvQualityInspection 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Grid gvQualityInspection;
+
+ ///
+ /// TextBox9 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox TextBox9;
+
+ ///
+ /// TextBox11 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox TextBox11;
+
+ ///
+ /// Panel22 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Panel Panel22;
+
+ ///
+ /// Form21 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Form Form21;
+
+ ///
+ /// gvSpecialCheck 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Grid gvSpecialCheck;
+
+ ///
+ /// TextBox12 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox TextBox12;
+
+ ///
+ /// Panel23 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Panel Panel23;
+
+ ///
+ /// Form22 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Form Form22;
+
+ ///
+ /// gvFileReport 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Grid gvFileReport;
+
+ ///
+ /// Panel24 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Panel Panel24;
+
+ ///
+ /// Panel25 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Panel Panel25;
+
+ ///
+ /// Toolbar5 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Toolbar Toolbar5;
+
+ ///
+ /// btnRowMaterialProblem 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Button btnRowMaterialProblem;
+
+ ///
+ /// Form23 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Form Form23;
+
+ ///
+ /// gvRowMaterialProblem 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Grid gvRowMaterialProblem;
+
+ ///
+ /// txtUnitId 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtUnitId;
+
+ ///
+ /// txtProblemDesrioption 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtProblemDesrioption;
+
+ ///
+ /// txtTreatmentMeasures 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtTreatmentMeasures;
+
+ ///
+ /// txtProcessingResults 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtProcessingResults;
+
+ ///
+ /// txtRemark 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtRemark;
+
+ ///
+ /// Panel26 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Panel Panel26;
+
+ ///
+ /// Toolbar6 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Toolbar Toolbar6;
+
+ ///
+ /// btnAddConstructionProblems 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Button btnAddConstructionProblems;
+
+ ///
+ /// Form24 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Form Form24;
+
+ ///
+ /// gvConstructionProblems 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Grid gvConstructionProblems;
+
+ ///
+ /// drpUnitId 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.DropDownList drpUnitId;
+
+ ///
+ /// txtProblemDesrioption2 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtProblemDesrioption2;
+
+ ///
+ /// txtTreatmentMeasures2 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtTreatmentMeasures2;
+
+ ///
+ /// txtProcessingResults2 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtProcessingResults2;
+
+ ///
+ /// txtRemark2 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtRemark2;
+
+ ///
+ /// Panel27 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Panel Panel27;
+
+ ///
+ /// Toolbar7 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Toolbar Toolbar7;
+
+ ///
+ /// btnAddNextControl 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Button btnAddNextControl;
+
+ ///
+ /// Form25 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Form Form25;
+
+ ///
+ /// gvNextQualityControl 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Grid gvNextQualityControl;
+
+ ///
+ /// TextBox13 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox TextBox13;
+
///
/// Panel3 控件。
///
diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit.aspx b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit.aspx
index 54a9365a..fe1b0482 100644
--- a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit.aspx
+++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit.aspx
@@ -4,28 +4,33 @@
-
+
-
+
-
+
+
+
+
<%--2.本月主要工作内容--%>
@@ -219,13 +221,13 @@
ShowHeader="true">
+ ShowHeader="true">
-
@@ -233,16 +235,16 @@
-
+
+ ShowHeader="true">
-
@@ -250,16 +252,16 @@
-
+
+ ShowHeader="true">
-
@@ -267,89 +269,436 @@
-
-
+
+
-
-
+
-
-
+
- <%--20.项目质量体系审核--%>
+
+
+
+
+
+
+
+
+
+
+ <%--15.质量巡检情况--%>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <%--16.质量专项检查情况--%>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <%--17.质量文件上报情况--%>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <%--18.本月质量问题处理情况--%>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <%--19.下月质量控制重点--%>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <%--20.项目质量体系审核--%>
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
<%--21.类似项目管理经验教训应对措施及跟踪--%>
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
<%--22.附件--%>
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
-
@@ -358,9 +707,6 @@
-
-
-
diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit.aspx.cs b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit.aspx.cs
index 17fa9493..ba57c7cc 100644
--- a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit.aspx.cs
+++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit.aspx.cs
@@ -42,7 +42,25 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
#region 列表集合
private static List detailsGrid1 = new List();
+
+ ///
+ /// 18.本月质量问题处理情况
+ /// (1)原材料问题
+ ///
+ private static List rowMaterialProblemLists = new List();
+
+ ///
+ /// 18.本月质量问题处理情况
+ /// (2)施工过程问题
+ ///
+ private static List constructionProblemsLists = new List();
+
+ ///
+ /// 19.下月质量控制重点
+ ///
+ private static List nextQualityControlLists = new List();
#endregion
+
#region 加载页面
///
/// 加载页面
@@ -55,6 +73,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
{
this.EnableViewState = true;
this.lblProjectName.Text = BLL.ProjectService.GetProjectByProjectId(this.CurrUser.LoginProjectId).ProjectName;
+ BLL.UnitService.InitUnitNameByProjectIdUnitTypeDropDownList(this.drpUnitId, this.CurrUser.LoginProjectId, BLL.Const.ProjectUnitType_2, false);
this.ReportId = Request.Params["reportId"];
if (!string.IsNullOrEmpty(Request.Params["view"]))
{
@@ -82,7 +101,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
}
AddOrUpdate = "update";
- #region 加载本月质量目标管理情况
+ #region 加载本月质量目标管理情况
detailsGrid1.Clear();
detailsGrid1 = (from x in Funs.DB.Report_CqmsTarget
where x.ReportId == this.ReportId
@@ -97,6 +116,44 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
#endregion
+ #region 加载18.本月质量问题处理情况
+ //(1)原材料问题
+ rowMaterialProblemLists.Clear();
+ rowMaterialProblemLists = (from x in Funs.DB.Report_RowMaterialProblem
+ where x.ReportId == this.ReportId
+ select x).ToList();
+ if (rowMaterialProblemLists.Count > 0)
+ {
+ gvRowMaterialProblem.Hidden = false;
+ gvRowMaterialProblem.DataSource = rowMaterialProblemLists;
+ gvRowMaterialProblem.DataBind();
+ }
+ //(2)施工过程问题
+ constructionProblemsLists.Clear();
+ constructionProblemsLists = (from x in Funs.DB.Report_ConstructionProblems
+ where x.ReportId == this.ReportId
+ select x).ToList();
+ if (constructionProblemsLists.Count>0)
+ {
+ gvConstructionProblems.Hidden = false;
+ gvConstructionProblems.DataSource = constructionProblemsLists;
+ gvConstructionProblems.DataBind();
+ }
+ #endregion
+
+ #region 加载19.下月质量控制重点
+ nextQualityControlLists.Clear();
+ nextQualityControlLists = (from x in Funs.DB.Report_NextQualityControl
+ where x.ReportId == this.ReportId
+ select x).ToList();
+ if (nextQualityControlLists.Count>0)
+ {
+ gvNextQualityControl.Hidden = false;
+ gvNextQualityControl.DataSource = nextQualityControlLists;
+ gvNextQualityControl.DataBind();
+ }
+ #endregion
+
#region 加载文本框内容
var txtReportList = Funs.DB.Report_TextBoxContent.Where(x => x.ReportId == ReportId).ToList();
txtAre0.Text = txtReportList.FirstOrDefault(x => x.ContentType == "0").ContentText;
@@ -108,7 +165,8 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
txtAre22.Text = txtReportList.FirstOrDefault(x => x.ContentType == "22").ContentText;
#endregion
-
+ //加载所有grid
+ lodAllGrid("1");
}
else
{
@@ -117,6 +175,9 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
//给个新的主键
ReportId = Guid.NewGuid().ToString();
AddOrUpdate = "add";
+
+ //加载所有grid
+ lodAllGrid("0");
}
hidReportId.Value = ReportId;
}
@@ -228,6 +289,15 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
//所有文本框表
TextBoxContentService.Delete(ReportId);
+
+ // 15.质量巡检情况 16.质量专项检查情况 17.质量文件上报情况
+ BLL.Report_CQMS_MonthReportItemService.DeleteReportItemByReportId(ReportId);
+ //18.本月质量问题处理情况(1)原材料问题
+ BLL.RowMaterialProblemService.DeleteRowMaterialProbleByReportId(ReportId);
+ //18.本月质量问题处理情况(2)施工过程问题
+ BLL.ConstructionProblemsService.DeleteConstructionProblemsByReportId(ReportId);
+ //19.下月质量控制重点
+ BLL.NextQualityControlService.DeleteNextQualityControlByReportId(ReportId);
#endregion
#region 保存所有子表
@@ -236,6 +306,21 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
//保存文本框
saveTxtContent();
+
+
+
+ //保存15.质量巡检情况
+ saveQualityInspection();
+ //保存16.质量专项检查情况
+ saveSpecialCheck();
+ //保存17.质量文件上报情况
+ saveFileReport();
+ //保存18.(1)原材料问题
+ saveRowMaterialProblem();
+ //保存18.(2)施工过程问题
+ saveConstructionProblems();
+ //保存19.下月质量控制重点
+ saveNextQualityControl();
#endregion
if (AddOrUpdate == "add")
@@ -340,5 +425,607 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
}
#endregion
+
+
+
+ void lodAllGrid(string objType)
+ {
+ //加载15.质量巡检情况
+ loadQualityInspection(objType);
+ //加载16.质量专项检查情况
+ loadSpecialCheck(objType);
+ //加载17.质量文件上报情况
+ loadFileReport(objType);
+ }
+
+ #region 15.质量巡检情况 gvQualityInspection方法
+ ///
+ /// 加载质量巡检情况
+ ///
+ void loadQualityInspection(string objType)
+ {
+ var db = Funs.DB;
+ DateTime startDate = Convert.ToDateTime(this.txtStartDate.Text.Trim());
+ DateTime endDate = Convert.ToDateTime(this.txtEndDate.Text.Trim());
+ var list = new List();
+ int i = 1;
+
+ int Quantity1Sum = 0;
+ int Quantity2Sum = 0;
+ //加载所有单位
+ var units = from x in Funs.DB.Project_ProjectUnit
+ join y in Funs.DB.Base_Unit on x.UnitId equals y.UnitId
+ where x.ProjectId == this.CurrUser.LoginProjectId && (x.UnitType == BLL.Const.ProjectUnitType_2 || x.UnitType == BLL.Const.ProjectUnitType_1)
+ orderby y.UnitCode
+ select new { x.UnitId, y.UnitName };
+ foreach (var item in units)
+ {
+ var query = from c in db.Check_CheckControl
+ join u in db.Base_Unit on c.UnitId equals u.UnitId into unitJoin
+ from u in unitJoin.DefaultIfEmpty()
+ where c.ProjectId == this.CurrUser.LoginProjectId && c.UnitId == item.UnitId
+ select new
+ {
+ c.CheckDate,
+ c.ProjectId,
+ u.UnitId,
+ u.UnitName
+ };
+ var AllList = query.ToList();
+ var monethCount = query
+ .Where(x => (x.CheckDate >= Convert.ToDateTime(startDate) && x.CheckDate <= Convert.ToDateTime(endDate)));
+
+ Model.Report_CQMS_MonthReportItem model = new Model.Report_CQMS_MonthReportItem();
+ model.Id = Guid.NewGuid().ToString();
+ model.ContentName = item.UnitName;
+ model.MonthsCount = monethCount.Count();
+ model.ProjectCount = AllList.Count();
+ model.ReportId = ReportId;
+ //如果是修改,查询表中数据
+ if (objType == "1")
+ {
+ var NewModel = db.Report_CQMS_MonthReportItem.FirstOrDefault(x => x.ReportId == ReportId && x.ContentName == item.UnitName && x.ReType == "1");
+ if (NewModel != null)
+ {
+ model.RectificationRate = NewModel.RectificationRate;
+ model.Remarks = NewModel.Remarks;
+ }
+ }
+ list.Add(model);
+
+ Quantity1Sum += monethCount.Count();
+ Quantity2Sum += AllList.Count();
+ i++;
+ }
+ gvQualityInspection.DataSource = list;
+ gvQualityInspection.DataBind();
+
+ //合计
+ JObject summary = new JObject();
+ summary.Add("ContentName", "合计");
+ summary.Add("MonthsCount", Quantity1Sum.ToString());
+ summary.Add("ProjectCount", Quantity2Sum.ToString());
+
+ gvQualityInspection.SummaryData = summary;
+ }
+ #endregion
+
+ #region 16.质量专项检查情况 gvSpecialCheck方法
+ ///
+ /// 加载质量专项检查情况
+ ///
+ void loadSpecialCheck(string objType)
+ {
+ var db = Funs.DB;
+ DateTime startDate = Convert.ToDateTime(this.txtStartDate.Text.Trim());
+ DateTime endDate = Convert.ToDateTime(this.txtEndDate.Text.Trim());
+ var list = new List();
+ int i = 1;
+
+ int Quantity1Sum = 0;
+ int Quantity2Sum = 0;
+
+ //加载检查类别
+ var lists = BLL.JointCheckService.GetCheckTypeList();
+ foreach (var item in lists)
+ {
+ var query = from c in db.Check_JointCheck
+ where c.ProjectId == this.CurrUser.LoginProjectId && c.CheckType == item.Key.ToString()
+ select new
+ {
+ c.CheckDate,
+ c.ProjectId,
+ c.CheckType
+ };
+ var AllList = query.ToList();
+ var monethCount = query
+ .Where(x => (x.CheckDate >= Convert.ToDateTime(startDate) && x.CheckDate <= Convert.ToDateTime(endDate)));
+
+ Model.Report_CQMS_MonthReportItem model = new Model.Report_CQMS_MonthReportItem();
+ model.Id = Guid.NewGuid().ToString();
+ model.ContentName = item.Value;
+ model.MonthsCount = monethCount.Count();
+ model.ProjectCount = AllList.Count();
+ model.ReportId = ReportId;
+ //如果是修改,查询表中数据
+ if (objType == "1")
+ {
+ var NewModel = db.Report_CQMS_MonthReportItem.FirstOrDefault(x => x.ReportId == ReportId && x.ContentName == item.Value && x.ReType == "2");
+ if (NewModel != null)
+ {
+ model.Remarks = NewModel.Remarks;
+ }
+ }
+ list.Add(model);
+
+ Quantity1Sum += monethCount.Count();
+ Quantity2Sum += AllList.Count();
+ i++;
+ }
+
+ gvSpecialCheck.DataSource = list;
+ gvSpecialCheck.DataBind();
+
+ //合计
+ JObject summary = new JObject();
+ summary.Add("ContentName", "合计");
+ summary.Add("MonthsCount", Quantity1Sum.ToString());
+ summary.Add("ProjectCount", Quantity2Sum.ToString());
+
+ gvSpecialCheck.SummaryData = summary;
+ }
+ #endregion
+
+ #region 17.质量文件上报情况 gvFileReport方法
+ ///
+ /// 加载质量文件上报情况
+ ///
+ void loadFileReport(string objType)
+ {
+ var db = Funs.DB;
+ DateTime startDate = Convert.ToDateTime(this.txtStartDate.Text.Trim());
+ DateTime endDate = Convert.ToDateTime(this.txtEndDate.Text.Trim());
+ var list = new List();
+ int i = 1;
+
+ int Quantity1Sum = 0;
+ int Quantity2Sum = 0;
+ int Quantity3Sum = 0;
+ int Quantity4Sum = 0;
+ //加载所有单位
+ var units = from x in Funs.DB.Project_ProjectUnit
+ join y in Funs.DB.Base_Unit on x.UnitId equals y.UnitId
+ where x.ProjectId == this.CurrUser.LoginProjectId && (x.UnitType == BLL.Const.ProjectUnitType_2 || x.UnitType == BLL.Const.ProjectUnitType_1)
+ orderby y.UnitCode
+ select new { x.UnitId, y.UnitName };
+ foreach (var item in units)
+ {
+ //var query = from c in db.Check_CheckControl
+ // join u in db.Base_Unit on c.UnitId equals u.UnitId into unitJoin
+ // from u in unitJoin.DefaultIfEmpty()
+ // where c.ProjectId == this.CurrUser.LoginProjectId && c.UnitId == item.UnitId
+ // select new
+ // {
+ // c.CheckDate,
+ // c.ProjectId,
+ // u.UnitId,
+ // u.UnitName
+ // };
+ //var AllList = query.ToList();//项目数
+ //本月数
+ //var monethCount = query.Where(x => (x.CheckDate >= Convert.ToDateTime(startDate) && x.CheckDate <= Convert.ToDateTime(endDate)));
+ //var yzCount = 0;//本月业主/ 监理返回数量
+ //var NoBackCount = 0;//累计未返回数量
+ Model.Report_CQMS_MonthReportItem model = new Model.Report_CQMS_MonthReportItem();
+ model.Id = Guid.NewGuid().ToString();
+ model.ContentName = item.UnitName;
+ //model.MonthsCount = monethCount.Count();
+ //model.ProjectCount = AllList.Count();
+ //model.MonthsBackCount =;
+ //model.TotalNoBackCount =;
+ model.ReportId = ReportId;
+ //如果是修改,查询表中数据
+ if (objType == "1")
+ {
+ var NewModel = db.Report_CQMS_MonthReportItem.FirstOrDefault(x => x.ReportId == ReportId && x.ContentName == item.UnitName && x.ReType == "3");
+ if (NewModel != null)
+ {
+ model.Remarks = NewModel.Remarks;
+ }
+ }
+ list.Add(model);
+
+ //Quantity1Sum += monethCount.Count();
+ //Quantity2Sum += AllList.Count();
+ //Quantity3Sum += yzCount.Count();
+ //Quantity4Sum += NoBackCount.Count();
+ i++;
+ }
+ gvFileReport.DataSource = list;
+ gvFileReport.DataBind();
+
+ //合计
+ JObject summary = new JObject();
+ summary.Add("ContentName", "合计");
+ summary.Add("MonthsCount", Quantity1Sum.ToString());
+ summary.Add("ProjectCount", Quantity2Sum.ToString());
+ summary.Add("MonthsBackCount", Quantity3Sum.ToString());
+ summary.Add("TotalNoBackCount", Quantity4Sum.ToString());
+
+ gvFileReport.SummaryData = summary;
+ }
+ #endregion
+
+ #region 18.本月质量问题处理情况
+ #region gvRowMaterialProblem 事件
+ ///
+ /// 增加原材料问题
+ ///
+ ///
+ ///
+ protected void btnRowMaterialProblem_Click(object sender, EventArgs e)
+ {
+ gvRowMaterialProblem.Hidden = false;
+
+ JArray teamGroupData = gvRowMaterialProblem.GetMergedData();
+ List list = new List();
+ foreach (JObject teamGroupRow in teamGroupData)
+ {
+ JObject values = teamGroupRow.Value("values");
+ values.Add("Id", teamGroupRow.Value("id"));
+ list.Add(values);
+ }
+ JObject defaultObj = new JObject
+ { { "RowMaterialProblemId",Guid.NewGuid().ToString() },
+ { "ReportId", ReportId },
+ { "UnitId", "" },
+ { "ProblemDesrioption",""},
+ { "TreatmentMeasures", "" },
+ { "ProcessingResults","" },
+ { "Remark", "" },
+ { "delRowMaterialProblem", String.Format("
", GetDeleteRowMaterialProblem(), IconHelper.GetResolvedIconUrl(Icon.Delete)) }
+ };
+ list.Add(defaultObj);
+ gvRowMaterialProblem.DataSource = list;
+ gvRowMaterialProblem.DataBind();
+ }
+
+ ///
+ /// 绑定数据前事件
+ ///
+ ///
+ ///
+ protected void gvRowMaterialProblem_PreDataBound(object sender, EventArgs e)
+ {
+ // 设置LinkButtonField的点击客户端事件
+ LinkButtonField deleteField = gvRowMaterialProblem.FindColumn("delRowMaterialProblem") as LinkButtonField;
+ deleteField.OnClientClick = GetDeleteRowMaterialProblem();
+ }
+ ///
+ /// 删除提示
+ ///
+ ///
+ private string GetDeleteRowMaterialProblem()
+ {
+ return Confirm.GetShowReference("删除选中行?", String.Empty, MessageBoxIcon.Question, gvRowMaterialProblem.GetDeleteSelectedRowsReference(), String.Empty);
+ }
+ #endregion
+
+ #region gvConstructionProblems 事件
+ ///
+ /// 增加施工过程问题
+ ///
+ ///
+ ///
+ protected void btnAddConstructionProblems_Click(object sender, EventArgs e)
+ {
+ gvConstructionProblems.Hidden = false;
+
+ JArray teamGroupData = gvConstructionProblems.GetMergedData();
+ List list = new List();
+ foreach (JObject teamGroupRow in teamGroupData)
+ {
+ JObject values = teamGroupRow.Value("values");
+ values.Add("Id", teamGroupRow.Value("id"));
+ list.Add(values);
+ }
+ JObject defaultObj = new JObject
+ { { "ConstructionProblemsId",Guid.NewGuid() },
+ { "ReportId", ReportId },
+ { "UnitId", "" },
+ { "ProblemDesrioption",""},
+ { "TreatmentMeasures", "" },
+ { "ProcessingResults","" },
+ { "Remark", "" },
+ { "delConstructionProblems", String.Format("
", GetDeleteConstructionProblems(), IconHelper.GetResolvedIconUrl(Icon.Delete)) }
+ };
+ list.Add(defaultObj);
+ gvConstructionProblems.DataSource = list;
+ gvConstructionProblems.DataBind();
+ }
+
+ ///
+ /// 绑定数据前事件
+ ///
+ ///
+ ///
+ protected void gvConstructionProblems_PreDataBound(object sender, EventArgs e)
+ {
+ // 设置LinkButtonField的点击客户端事件
+ LinkButtonField deleteField = gvConstructionProblems.FindColumn("delConstructionProblems") as LinkButtonField;
+ deleteField.OnClientClick = GetDeleteConstructionProblems();
+ }
+
+ ///
+ /// 删除提示
+ ///
+ ///
+ private string GetDeleteConstructionProblems()
+ {
+ return Confirm.GetShowReference("删除选中行?", String.Empty, MessageBoxIcon.Question, gvConstructionProblems.GetDeleteSelectedRowsReference(), String.Empty);
+ }
+ #endregion
+ #endregion
+
+ #region 19.下月质量控制重点
+ ///
+ /// gvNextQualityControl加载前事件
+ ///
+ ///
+ ///
+ protected void gvNextQualityControl_PreDataBound(object sender, EventArgs e)
+ {
+ // 设置LinkButtonField的点击客户端事件
+ LinkButtonField deleteField = gvNextQualityControl.FindColumn("delNextQualityControl") as LinkButtonField;
+ deleteField.OnClientClick = GetDeleteNextQualityControl();
+ }
+
+ ///
+ /// 增加
+ ///
+ ///
+ ///
+ protected void btnAddNextControl_Click(object sender, EventArgs e)
+ {
+ gvNextQualityControl.Hidden = false;
+
+ JArray teamGroupData = gvNextQualityControl.GetMergedData();
+ List list = new List();
+ foreach (JObject teamGroupRow in teamGroupData)
+ {
+ JObject values = teamGroupRow.Value("values");
+ values.Add("Id", teamGroupRow.Value("id"));
+ list.Add(values);
+ }
+ JObject defaultObj = new JObject
+ { { "NextQualityControlId",Guid.NewGuid().ToString() },
+ { "ReportId", ReportId },
+ { "NextQualityControlContent", "" },
+ { "delNextQualityControl", String.Format("
", GetDeleteNextQualityControl(), IconHelper.GetResolvedIconUrl(Icon.Delete)) }
+ };
+ list.Add(defaultObj);
+ gvNextQualityControl.DataSource = list;
+ gvNextQualityControl.DataBind();
+ }
+
+ ///
+ /// 删除提示
+ ///
+ ///
+ private string GetDeleteNextQualityControl()
+ {
+ return Confirm.GetShowReference("删除选中行?", String.Empty, MessageBoxIcon.Question, gvNextQualityControl.GetDeleteSelectedRowsReference(), String.Empty);
+ }
+ #endregion
+
+ #region 保存方法
+ #region 15.质量巡检情况
+ ///
+ /// 15.质量巡检情况
+ ///
+ void saveQualityInspection()
+ {
+ List detailLists = new List();
+ JArray teamGroupData = gvQualityInspection.GetMergedData();
+ foreach (JObject teamGroupRow in teamGroupData)
+ {
+ JObject values = teamGroupRow.Value("values");
+ int rowIndex = teamGroupRow.Value("index");
+ Model.Report_CQMS_MonthReportItem newDetail = new Model.Report_CQMS_MonthReportItem
+ {
+ ReportId = ReportId,
+ ReType = "1",
+ ContentName = values.Value("ContentName"),
+ MonthsCount = values.Value("MonthsCount"),
+ ProjectCount = values.Value("ProjectCount"),
+ RectificationRate = values.Value("RectificationRate"),
+ Remarks = values.Value("Remarks")
+ };
+ if (gvQualityInspection.Rows[rowIndex].DataKeys.Length > 0)
+ {
+ newDetail.Id = gvQualityInspection.Rows[rowIndex].DataKeys[0].ToString();
+ }
+ detailLists.Add(newDetail);
+ }
+ if (detailLists.Count > 0)
+ {
+ Funs.DB.Report_CQMS_MonthReportItem.InsertAllOnSubmit(detailLists);
+ Funs.DB.SubmitChanges();
+ }
+ }
+ #endregion
+
+ #region 16.质量专项检查情况
+ ///
+ /// 16.质量专项检查情况
+ ///
+ void saveSpecialCheck()
+ {
+ List detailLists = new List();
+ JArray teamGroupData = gvSpecialCheck.GetMergedData();
+ foreach (JObject teamGroupRow in teamGroupData)
+ {
+ JObject values = teamGroupRow.Value("values");
+ int rowIndex = teamGroupRow.Value("index");
+ Model.Report_CQMS_MonthReportItem newDetail = new Model.Report_CQMS_MonthReportItem
+ {
+ ReportId = ReportId,
+ ReType = "2",
+ ContentName = values.Value("ContentName"),
+ MonthsCount = values.Value("MonthsCount"),
+ ProjectCount = values.Value("ProjectCount"),
+ Remarks = values.Value("Remarks")
+ };
+ if (gvSpecialCheck.Rows[rowIndex].DataKeys.Length > 0)
+ {
+ newDetail.Id = gvSpecialCheck.Rows[rowIndex].DataKeys[0].ToString();
+ }
+ detailLists.Add(newDetail);
+ }
+ if (detailLists.Count > 0)
+ {
+ Funs.DB.Report_CQMS_MonthReportItem.InsertAllOnSubmit(detailLists);
+ Funs.DB.SubmitChanges();
+ }
+ }
+ #endregion
+
+ #region 17.质量文件上报情况
+ ///
+ /// 17.质量文件上报情况
+ ///
+ void saveFileReport()
+ {
+ List detailLists = new List();
+ JArray teamGroupData = gvFileReport.GetMergedData();
+ foreach (JObject teamGroupRow in teamGroupData)
+ {
+ JObject values = teamGroupRow.Value("values");
+ int rowIndex = teamGroupRow.Value("index");
+ Model.Report_CQMS_MonthReportItem newDetail = new Model.Report_CQMS_MonthReportItem
+ {
+ ReportId = ReportId,
+ ReType = "3",
+ ContentName = values.Value("ContentName"),
+ //MonthsCount = Funs.GetNewInt(values.Value("MonthsCount").ToString()),
+ //ProjectCount = Funs.GetNewInt(values.Value("ProjectCount").ToString()),
+ //MonthsBackCount = Funs.GetNewInt(values.Value("MonthsBackCount").ToString()),
+ //TotalNoBackCount = Funs.GetNewInt(values.Value("TotalNoBackCount").ToString())
+ };
+ if (gvFileReport.Rows[rowIndex].DataKeys.Length > 0)
+ {
+ newDetail.Id = gvFileReport.Rows[rowIndex].DataKeys[0].ToString();
+ }
+ detailLists.Add(newDetail);
+ }
+ if (detailLists.Count > 0)
+ {
+ Funs.DB.Report_CQMS_MonthReportItem.InsertAllOnSubmit(detailLists);
+ Funs.DB.SubmitChanges();
+ }
+ }
+ #endregion
+
+ #region 18.本月质量问题处理情况
+ ///
+ /// (1)原材料问题
+ ///
+ void saveRowMaterialProblem()
+ {
+ List detailLists = new List();
+ JArray teamGroupData = gvRowMaterialProblem.GetMergedData();
+ foreach (JObject teamGroupRow in teamGroupData)
+ {
+ JObject values = teamGroupRow.Value("values");
+ int rowIndex = teamGroupRow.Value("index");
+ Model.Report_RowMaterialProblem newDetail = new Model.Report_RowMaterialProblem
+ {
+ ReportId = ReportId,
+ UnitId = values.Value("UnitId"),
+ ProblemDesrioption = values.Value("ProblemDesrioption"),
+ TreatmentMeasures = values.Value("TreatmentMeasures"),
+ ProcessingResults = values.Value("ProcessingResults"),
+ Remark = values.Value("Remark")
+ };
+ if (gvRowMaterialProblem.Rows[rowIndex].DataKeys.Length > 0)
+ {
+ newDetail.RowMaterialProblemId = gvRowMaterialProblem.Rows[rowIndex].DataKeys[0].ToString();
+ }
+ detailLists.Add(newDetail);
+ }
+ if (detailLists.Count > 0)
+ {
+ Funs.DB.Report_RowMaterialProblem.InsertAllOnSubmit(detailLists);
+ Funs.DB.SubmitChanges();
+ }
+ }
+
+ ///
+ /// (2)施工过程问题
+ ///
+ void saveConstructionProblems()
+ {
+ List detailLists = new List();
+ JArray teamGroupData = gvConstructionProblems.GetMergedData();
+ foreach (JObject teamGroupRow in teamGroupData)
+ {
+ JObject values = teamGroupRow.Value("values");
+ int rowIndex = teamGroupRow.Value("index");
+ Model.Report_ConstructionProblems newDetail = new Model.Report_ConstructionProblems
+ {
+ ReportId = ReportId,
+ UnitId = values.Value("UnitId"),
+ ProblemDesrioption = values.Value("ProblemDesrioption"),
+ TreatmentMeasures = values.Value("TreatmentMeasures"),
+ ProcessingResults = values.Value("ProcessingResults"),
+ Remark = values.Value("Remark")
+ };
+ if (gvConstructionProblems.Rows[rowIndex].DataKeys.Length > 0)
+ {
+ newDetail.ConstructionProblemsId = gvConstructionProblems.Rows[rowIndex].DataKeys[0].ToString();
+ }
+ detailLists.Add(newDetail);
+ }
+ if (detailLists.Count > 0)
+ {
+ Funs.DB.Report_ConstructionProblems.InsertAllOnSubmit(detailLists);
+ Funs.DB.SubmitChanges();
+ }
+ }
+
+ #endregion
+
+ #region 19.下月质量控制重点
+ ///
+ /// 下月质量控制重点
+ ///
+ void saveNextQualityControl()
+ {
+ List detailLists = new List();
+ JArray teamGroupData = gvNextQualityControl.GetMergedData();
+ foreach (JObject teamGroupRow in teamGroupData)
+ {
+ JObject values = teamGroupRow.Value("values");
+ int rowIndex = teamGroupRow.Value("index");
+ Model.Report_NextQualityControl newDetail = new Model.Report_NextQualityControl
+ {
+ ReportId = ReportId,
+ NextQualityControlContent = values.Value("NextQualityControlContent")
+ };
+ if (gvNextQualityControl.Rows[rowIndex].DataKeys.Length > 0)
+ {
+ newDetail.NextQualityControlId = gvNextQualityControl.Rows[rowIndex].DataKeys[0].ToString();
+ }
+ detailLists.Add(newDetail);
+ }
+ if (detailLists.Count > 0)
+ {
+ Funs.DB.Report_NextQualityControl.InsertAllOnSubmit(detailLists);
+ Funs.DB.SubmitChanges();
+ }
+ }
+ #endregion
+ #endregion
+
}
}
\ No newline at end of file
diff --git a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit.aspx.designer.cs b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit.aspx.designer.cs
index 14e28359..56e530ef 100644
--- a/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit.aspx.designer.cs
+++ b/SGGL/FineUIPro.Web/CQMS/ManageReportNew/MonthReportNewEdit.aspx.designer.cs
@@ -7,13 +7,11 @@
// 自动生成>
//------------------------------------------------------------------------------
-namespace FineUIPro.Web.CQMS.ManageReportNew
-{
-
-
- public partial class MonthReportNewEdit
- {
-
+namespace FineUIPro.Web.CQMS.ManageReportNew {
+
+
+ public partial class MonthReportNewEdit {
+
///
/// form1 控件。
///
@@ -22,7 +20,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.HtmlControls.HtmlForm form1;
-
+
///
/// PageManager1 控件。
///
@@ -31,7 +29,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.PageManager PageManager1;
-
+
///
/// ContentPanel1 控件。
///
@@ -40,7 +38,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.ContentPanel ContentPanel1;
-
+
///
/// Table1 控件。
///
@@ -49,7 +47,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.HtmlControls.HtmlTable Table1;
-
+
///
/// tabbtn 控件。
///
@@ -58,7 +56,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.HtmlControls.HtmlTable tabbtn;
-
+
///
/// image15 控件。
///
@@ -67,7 +65,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.WebControls.Image image15;
-
+
///
/// Button2 控件。
///
@@ -76,7 +74,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button Button2;
-
+
///
/// Table5 控件。
///
@@ -85,7 +83,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.HtmlControls.HtmlTable Table5;
-
+
///
/// lblProjectName 控件。
///
@@ -94,7 +92,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.WebControls.Label lblProjectName;
-
+
///
/// Label1 控件。
///
@@ -103,7 +101,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.WebControls.Label Label1;
-
+
///
/// txtPeriod 控件。
///
@@ -112,7 +110,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.WebControls.TextBox txtPeriod;
-
+
///
/// RequiredFieldValidator1 控件。
///
@@ -121,7 +119,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.WebControls.RequiredFieldValidator RequiredFieldValidator1;
-
+
///
/// Label2 控件。
///
@@ -130,7 +128,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.WebControls.Label Label2;
-
+
///
/// lblTital 控件。
///
@@ -139,7 +137,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.WebControls.Label lblTital;
-
+
///
/// Table2 控件。
///
@@ -148,7 +146,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.HtmlControls.HtmlTable Table2;
-
+
///
/// txtStartDate 控件。
///
@@ -157,7 +155,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.WebControls.TextBox txtStartDate;
-
+
///
/// txtEndDate 控件。
///
@@ -166,7 +164,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.WebControls.TextBox txtEndDate;
-
+
///
/// Panel4 控件。
///
@@ -175,7 +173,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel4;
-
+
///
/// Toolbar2 控件。
///
@@ -184,7 +182,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Toolbar Toolbar2;
-
+
///
/// Button3 控件。
///
@@ -193,7 +191,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button Button3;
-
+
///
/// Form5 控件。
///
@@ -202,7 +200,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form5;
-
+
///
/// Grid1 控件。
///
@@ -211,7 +209,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Grid Grid1;
-
+
///
/// txtProStage 控件。
///
@@ -220,7 +218,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtProStage;
-
+
///
/// txtProDescribe 控件。
///
@@ -229,7 +227,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtProDescribe;
-
+
///
/// txtTargetValue 控件。
///
@@ -238,7 +236,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtTargetValue;
-
+
///
/// txtMonthPer 控件。
///
@@ -247,7 +245,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtMonthPer;
-
+
///
/// txtRemarks 控件。
///
@@ -256,7 +254,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextBox txtRemarks;
-
+
///
/// Panel5 控件。
///
@@ -265,7 +263,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel5;
-
+
///
/// Panel6 控件。
///
@@ -274,7 +272,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel6;
-
+
///
/// Form6 控件。
///
@@ -283,7 +281,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form6;
-
+
///
/// txtAre0 控件。
///
@@ -292,7 +290,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextArea txtAre0;
-
+
///
/// Panel7 控件。
///
@@ -301,7 +299,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel7;
-
+
///
/// Form7 控件。
///
@@ -310,7 +308,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form7;
-
+
///
/// txtAre1 控件。
///
@@ -319,7 +317,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextArea txtAre1;
-
+
///
/// Panel8 控件。
///
@@ -328,7 +326,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel8;
-
+
///
/// Form8 控件。
///
@@ -337,7 +335,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form8;
-
+
///
/// txtAre2 控件。
///
@@ -346,7 +344,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextArea txtAre2;
-
+
///
/// Panel9 控件。
///
@@ -355,7 +353,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel9;
-
+
///
/// Panel10 控件。
///
@@ -364,7 +362,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel10;
-
+
///
/// Form9 控件。
///
@@ -373,7 +371,358 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form9;
-
+
+ ///
+ /// Panel13 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Panel Panel13;
+
+ ///
+ /// Form12 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Form Form12;
+
+ ///
+ /// gvQualityInspection 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Grid gvQualityInspection;
+
+ ///
+ /// TextBox1 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox TextBox1;
+
+ ///
+ /// TextBox3 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox TextBox3;
+
+ ///
+ /// Panel11 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Panel Panel11;
+
+ ///
+ /// Form10 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Form Form10;
+
+ ///
+ /// gvSpecialCheck 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Grid gvSpecialCheck;
+
+ ///
+ /// TextBox4 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox TextBox4;
+
+ ///
+ /// Panel12 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Panel Panel12;
+
+ ///
+ /// Form11 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Form Form11;
+
+ ///
+ /// gvFileReport 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Grid gvFileReport;
+
+ ///
+ /// Panel14 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Panel Panel14;
+
+ ///
+ /// Panel15 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Panel Panel15;
+
+ ///
+ /// Toolbar3 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Toolbar Toolbar3;
+
+ ///
+ /// btnRowMaterialProblem 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Button btnRowMaterialProblem;
+
+ ///
+ /// Form13 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Form Form13;
+
+ ///
+ /// gvRowMaterialProblem 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Grid gvRowMaterialProblem;
+
+ ///
+ /// txtUnitId 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtUnitId;
+
+ ///
+ /// txtProblemDesrioption 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtProblemDesrioption;
+
+ ///
+ /// txtTreatmentMeasures 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtTreatmentMeasures;
+
+ ///
+ /// txtProcessingResults 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtProcessingResults;
+
+ ///
+ /// txtRemark 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtRemark;
+
+ ///
+ /// Panel16 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Panel Panel16;
+
+ ///
+ /// Toolbar4 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Toolbar Toolbar4;
+
+ ///
+ /// btnAddConstructionProblems 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Button btnAddConstructionProblems;
+
+ ///
+ /// Form14 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Form Form14;
+
+ ///
+ /// gvConstructionProblems 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Grid gvConstructionProblems;
+
+ ///
+ /// drpUnitId 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.DropDownList drpUnitId;
+
+ ///
+ /// txtProblemDesrioption2 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtProblemDesrioption2;
+
+ ///
+ /// txtTreatmentMeasures2 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtTreatmentMeasures2;
+
+ ///
+ /// txtProcessingResults2 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtProcessingResults2;
+
+ ///
+ /// txtRemark2 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox txtRemark2;
+
+ ///
+ /// Panel17 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Panel Panel17;
+
+ ///
+ /// Toolbar5 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Toolbar Toolbar5;
+
+ ///
+ /// btnAddNextControl 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Button btnAddNextControl;
+
+ ///
+ /// Form15 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Form Form15;
+
+ ///
+ /// gvNextQualityControl 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.Grid gvNextQualityControl;
+
+ ///
+ /// TextBox2 控件。
+ ///
+ ///
+ /// 自动生成的字段。
+ /// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
+ ///
+ protected global::FineUIPro.TextBox TextBox2;
+
///
/// Panel3 控件。
///
@@ -382,7 +731,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel3;
-
+
///
/// Form3 控件。
///
@@ -391,7 +740,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form3;
-
+
///
/// txtAre20 控件。
///
@@ -400,7 +749,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextArea txtAre20;
-
+
///
/// Panel1 控件。
///
@@ -409,7 +758,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel1;
-
+
///
/// Form2 控件。
///
@@ -418,7 +767,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form2;
-
+
///
/// txtAre21 控件。
///
@@ -427,7 +776,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextArea txtAre21;
-
+
///
/// Panel2 控件。
///
@@ -436,7 +785,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Panel Panel2;
-
+
///
/// Form4 控件。
///
@@ -445,7 +794,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Form Form4;
-
+
///
/// txtAre22 控件。
///
@@ -454,7 +803,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.TextArea txtAre22;
-
+
///
/// Toolbar1 控件。
///
@@ -463,7 +812,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Toolbar Toolbar1;
-
+
///
/// hdCheckControlCode 控件。
///
@@ -472,7 +821,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.HiddenField hdCheckControlCode;
-
+
///
/// ToolbarFill1 控件。
///
@@ -481,7 +830,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.ToolbarFill ToolbarFill1;
-
+
///
/// Button1 控件。
///
@@ -490,7 +839,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.Button Button1;
-
+
///
/// hdId 控件。
///
@@ -499,7 +848,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.HiddenField hdId;
-
+
///
/// hdAttachUrl 控件。
///
@@ -508,7 +857,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::FineUIPro.HiddenField hdAttachUrl;
-
+
///
/// ValidationSummary1 控件。
///
@@ -517,7 +866,7 @@ namespace FineUIPro.Web.CQMS.ManageReportNew
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///
protected global::System.Web.UI.WebControls.ValidationSummary ValidationSummary1;
-
+
///
/// hidReportId 控件。
///
diff --git a/SGGL/FineUIPro.Web/ErrLog.txt b/SGGL/FineUIPro.Web/ErrLog.txt
index 406d2105..e69de29b 100644
--- a/SGGL/FineUIPro.Web/ErrLog.txt
+++ b/SGGL/FineUIPro.Web/ErrLog.txt
@@ -1,3328 +0,0 @@
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.DriverGoods.GoodsBuyEdit.<>c__DisplayClass5_0.b__1(View_DriverGoods_GoodsBuyItem x) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\TestRun\DriverGoods\GoodsBuyEdit.aspx.cs:行号 157
- 在 System.Linq.Enumerable.FirstOrDefault[TSource](IEnumerable`1 source, Func`2 predicate)
- 在 FineUIPro.Web.TestRun.DriverGoods.GoodsBuyEdit.Window1_Close(Object sender, WindowCloseEventArgs e) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\TestRun\DriverGoods\GoodsBuyEdit.aspx.cs:行号 157
- 在 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)
-出错时间:03/06/2024 15:22:37
-出错文件:http://localhost:8579/TestRun/DriverGoods/GoodsBuyEdit.aspx?GoodsBuyId=1d50d365-8005-48b4-af92-49f780aea04a
-IP地址:::1
-操作人员:JT
-
-出错时间:03/06/2024 15:22:37
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.DriverGoods.GoodsBuyEdit.<>c__DisplayClass5_0.b__1(View_DriverGoods_GoodsBuyItem x) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\TestRun\DriverGoods\GoodsBuyEdit.aspx.cs:行号 157
- 在 System.Linq.Enumerable.FirstOrDefault[TSource](IEnumerable`1 source, Func`2 predicate)
- 在 FineUIPro.Web.TestRun.DriverGoods.GoodsBuyEdit.Window1_Close(Object sender, WindowCloseEventArgs e) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\TestRun\DriverGoods\GoodsBuyEdit.aspx.cs:行号 157
- 在 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)
-出错时间:03/06/2024 15:24:56
-出错文件:http://localhost:8579/TestRun/DriverGoods/GoodsBuyEdit.aspx?GoodsBuyId=1d50d365-8005-48b4-af92-49f780aea04a
-IP地址:::1
-操作人员:JT
-
-出错时间:03/06/2024 15:24:57
-
-<<<<<<< HEAD
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\TestRun\DriverSchemeView.aspx(199): error CS1061: “ASP.testrun_driverschemeview_aspx”不包含“trOne_NodeCheck”的定义,并且找不到可接受类型为“ASP.testrun_driverschemeview_aspx”的第一个参数的扩展方法“trOne_NodeCheck”(是否缺少 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)
-出错时间:02/28/2024 16:18:39
-出错文件:http://localhost:8579/TestRun/DriverSchemeView.aspx?constructSolutionId=0d62a778-7fbc-4fec-ba0f-ff10dab34db2
-IP地址:::1
-
-出错时间:02/28/2024 16:18:39
-
->>>>>>> d28f7920d8c82ae74b3b4579a35df26704bc6372
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14204
- 在 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2181
-出错时间:03/05/2024 12:16:25
-出错时间:03/05/2024 12:16:25
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14228
- 在 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2046
-出错时间:03/05/2024 12:16:25
-出错时间:03/05/2024 12:16:25
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14220
- 在 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1942
-出错时间:03/05/2024 12:16:25
-出错时间:03/05/2024 12:16:25
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14020
- 在 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1884
-出错时间:03/05/2024 12:16:25
-出错时间:03/05/2024 12:16:25
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14204
- 在 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2181
-出错时间:03/05/2024 14:16:24
-出错时间:03/05/2024 14:16:24
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14228
- 在 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2046
-出错时间:03/05/2024 14:16:24
-出错时间:03/05/2024 14:16:24
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14220
- 在 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1942
-出错时间:03/05/2024 14:16:24
-出错时间:03/05/2024 14:16:24
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14020
- 在 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1884
-出错时间:03/05/2024 14:16:24
-出错时间:03/05/2024 14:16:24
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:列名 'CompileManDate' 无效。
-错误堆栈:
- 在 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
- 在 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
- 在 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
- 在 System.Data.SqlClient.SqlDataReader.get_MetaData()
- 在 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
- 在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable)
- 在 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\SQLHelper.cs:行号 311
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeeting.BindGrid() 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeeting.aspx.cs:行号 55
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeeting.Page_Load(Object sender, EventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeeting.aspx.cs:行号 18
- 在 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/06/2024 10:41:09
-出错文件:http://localhost:8579/TestRun/Meeting/ScheduleMeeting.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/06/2024 10:41:09
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14204
- 在 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2181
-出错时间:03/06/2024 12:42:19
-出错时间:03/06/2024 12:42:19
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14228
- 在 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2046
-出错时间:03/06/2024 12:42:19
-出错时间:03/06/2024 12:42:19
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14220
- 在 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1942
-出错时间:03/06/2024 12:42:19
-出错时间:03/06/2024 12:42:19
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14020
- 在 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1884
-出错时间:03/06/2024 12:42:19
-出错时间:03/06/2024 12:42:19
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14204
- 在 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2181
-出错时间:03/06/2024 17:17:40
-出错时间:03/06/2024 17:17:41
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14228
- 在 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2046
-出错时间:03/06/2024 17:17:41
-出错时间:03/06/2024 17:17:41
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14220
- 在 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1942
-出错时间:03/06/2024 17:17:41
-出错时间:03/06/2024 17:17:41
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14020
- 在 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1884
-出错时间:03/06/2024 17:17:41
-出错时间:03/06/2024 17:17:41
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14204
- 在 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2181
-出错时间:03/06/2024 19:17:39
-出错时间:03/06/2024 19:17:40
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14228
- 在 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2046
-出错时间:03/06/2024 19:17:40
-出错时间:03/06/2024 19:17:40
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14220
- 在 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1942
-出错时间:03/06/2024 19:17:40
-出错时间:03/06/2024 19:17:40
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14020
- 在 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1884
-出错时间:03/06/2024 19:17:40
-出错时间:03/06/2024 19:17:41
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14204
- 在 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2181
-出错时间:03/06/2024 21:17:40
-出错时间:03/06/2024 21:17:40
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14228
- 在 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2046
-出错时间:03/06/2024 21:17:40
-出错时间:03/06/2024 21:17:41
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14220
- 在 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1942
-出错时间:03/06/2024 21:17:41
-出错时间:03/06/2024 21:17:41
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14020
- 在 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1884
-出错时间:03/06/2024 21:17:41
-出错时间:03/06/2024 21:17:41
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 239
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvMenu_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 222
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/07/2024 09:26:42
-出错文件:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/07/2024 09:26:42
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 239
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvMenu_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 222
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/07/2024 09:26:42
-出错文件:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/07/2024 09:26:42
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 239
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvMenu_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 222
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/07/2024 09:27:16
-出错文件:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/07/2024 09:27:16
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 239
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvMenu_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 222
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/07/2024 09:30:08
-出错文件:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/07/2024 09:30:08
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 239
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvMenu_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 222
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/07/2024 09:30:09
-出错文件:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/07/2024 09:30:09
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 239
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvMenu_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 222
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/07/2024 09:30:10
-出错文件:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/07/2024 09:30:10
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 239
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvMenu_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 222
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/07/2024 09:30:10
-出错文件:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/07/2024 09:30:10
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 239
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvMenu_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 222
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/07/2024 09:30:12
-出错文件:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/07/2024 09:30:12
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 260
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 243
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/07/2024 09:46:01
-出错文件:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/07/2024 09:46:01
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 260
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 243
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/07/2024 09:46:02
-出错文件:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/07/2024 09:46:02
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 260
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 243
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/07/2024 09:46:06
-出错文件:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/07/2024 09:46:06
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 273
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 256
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/07/2024 10:01:27
-出错文件:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx?id=b25ba0c1-d14c-4c7d-97e3-07077af54252
-IP地址:::1
-操作人员:JT
-
-出错时间:03/07/2024 10:01:27
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 273
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 256
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/07/2024 10:01:27
-出错文件:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx?id=b25ba0c1-d14c-4c7d-97e3-07077af54252
-IP地址:::1
-操作人员:JT
-
-出错时间:03/07/2024 10:01:27
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 273
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 256
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/07/2024 10:01:28
-出错文件:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx?id=b25ba0c1-d14c-4c7d-97e3-07077af54252
-IP地址:::1
-操作人员:JT
-
-出错时间:03/07/2024 10:01:28
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 273
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 256
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/07/2024 10:01:32
-出错文件:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx?id=b25ba0c1-d14c-4c7d-97e3-07077af54252
-IP地址:::1
-操作人员:JT
-
-出错时间:03/07/2024 10:01:32
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 273
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 256
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/07/2024 10:04:30
-出错文件:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx?id=b25ba0c1-d14c-4c7d-97e3-07077af54252
-IP地址:::1
-操作人员:JT
-
-出错时间:03/07/2024 10:04:30
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 273
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 256
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/07/2024 10:04:30
-出错文件:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx?id=b25ba0c1-d14c-4c7d-97e3-07077af54252
-IP地址:::1
-操作人员:JT
-
-出错时间:03/07/2024 10:04:30
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 273
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 256
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/07/2024 10:04:31
-出错文件:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx?id=b25ba0c1-d14c-4c7d-97e3-07077af54252
-IP地址:::1
-操作人员:JT
-
-出错时间:03/07/2024 10:04:31
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 274
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 257
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/07/2024 10:07:25
-出错文件:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/07/2024 10:07:25
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 274
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 257
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/07/2024 10:07:26
-出错文件:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/07/2024 10:07:26
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingView.aspx(80): error CS1061: “ASP.testrun_meeting_schedulemeetingview_aspx”不包含“tvAttendMeetingsPerson_NodeCheck”的定义,并且找不到可接受类型为“ASP.testrun_meeting_schedulemeetingview_aspx”的第一个参数的扩展方法“tvAttendMeetingsPerson_NodeCheck”(是否缺少 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)
-出错时间:03/07/2024 10:11:48
-出错文件:http://localhost:8579/TestRun/Meeting/ScheduleMeetingView.aspx?id=ec5242d2-de49-4c14-bff2-2957f1f8a04f
-IP地址:::1
-
-出错时间:03/07/2024 10:11:48
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14204
- 在 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2181
-出错时间:03/07/2024 12:33:13
-出错时间:03/07/2024 12:33:13
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14228
- 在 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2046
-出错时间:03/07/2024 12:33:13
-出错时间:03/07/2024 12:33:13
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14220
- 在 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1942
-出错时间:03/07/2024 12:33:13
-出错时间:03/07/2024 12:33:13
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14020
- 在 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1884
-出错时间:03/07/2024 12:33:13
-出错时间:03/07/2024 12:33:13
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14204
- 在 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2181
-出错时间:03/07/2024 14:33:11
-出错时间:03/07/2024 14:33:11
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14228
- 在 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2046
-出错时间:03/07/2024 14:33:11
-出错时间:03/07/2024 14:33:11
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14220
- 在 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1942
-出错时间:03/07/2024 14:33:11
-出错时间:03/07/2024 14:33:11
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14020
- 在 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1884
-出错时间:03/07/2024 14:33:11
-出错时间:03/07/2024 14:33:11
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 286
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 269
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/07/2024 15:03:02
-出错文件:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx
-IP地址:::1
-操作人员:杨钦
-
-出错时间:03/07/2024 15:03:02
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 286
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 269
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/07/2024 15:03:03
-出错文件:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx
-IP地址:::1
-操作人员:杨钦
-
-出错时间:03/07/2024 15:03:03
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 286
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 269
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/07/2024 15:03:04
-出错文件:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx
-IP地址:::1
-操作人员:杨钦
-
-出错时间:03/07/2024 15:03:04
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 286
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeetingEdit.aspx.cs:行号 269
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/07/2024 15:03:05
-出错文件:http://localhost:8579/TestRun/Meeting/ScheduleMeetingEdit.aspx
-IP地址:::1
-操作人员:杨钦
-
-出错时间:03/07/2024 15:03:05
-
-
-错误信息开始=====>
-错误类型:FormatException
-错误信息:该字符串未被识别为有效的布尔值。
-错误堆栈:
- 在 System.Boolean.Parse(String value)
- 在 System.Convert.ToBoolean(String value)
- 在 FineUIPro.Web.TestRun.Meeting.Feedback.btnSave_Click(Object sender, EventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\Feedback.aspx.cs:行号 62
- 在 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/07/2024 15:30:12
-出错文件:http://localhost:8579/TestRun/Meeting/Feedback.aspx?id=ec5242d2-de49-4c14-bff2-2957f1f8a04f
-IP地址:::1
-操作人员:杨钦
-
-出错时间:03/07/2024 15:30:12
-
-
-错误信息开始=====>
-错误类型:ArgumentNullException
-错误信息:值不能为 null。
-参数名: expression
-错误堆栈:
- 在 System.Web.UI.DataBinder.Eval(Object container, String expression)
- 在 System.Web.UI.TemplateControl.Eval(String expression)
- 在 ASP.testrun_meeting_schedulemeeting_aspx.__DataBindinglblUserId(Object sender, EventArgs e) 位置 e:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeeting.aspx:行号 57
- 在 System.Web.UI.Control.OnDataBinding(EventArgs e)
- 在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
- 在 System.Web.UI.Control.DataBind()
- 在 System.Web.UI.Control.DataBindChildren()
- 在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
- 在 System.Web.UI.Control.DataBind()
- 在 (Control )
- 在 FineUIPro.GridRow.JKAqhrYRKGjUrputGryVTdIrcyJN()
- 在 (GridRow )
- 在 FineUIPro.Grid.JKAqhrYRKGjUrputGryVTdIrcyJN(Int32 , Object )
- 在 (Grid , Int32 , Object )
- 在 FineUIPro.Grid.BCddVmyfIadUytlhvgnchfKxYmAe(DataTable , Boolean )
- 在 (Grid , DataTable , Boolean )
- 在 FineUIPro.Grid.DataBind(Boolean keepCurrentData)
- 在 (Grid , Boolean )
- 在 FineUIPro.Grid.DataBind()
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeeting.BindGrid() 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeeting.aspx.cs:行号 61
- 在 FineUIPro.Web.TestRun.Meeting.ScheduleMeeting.Page_Load(Object sender, EventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\ScheduleMeeting.aspx.cs:行号 18
- 在 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/07/2024 15:45:20
-出错文件:http://localhost:8579/TestRun/Meeting/ScheduleMeeting.aspx
-IP地址:::1
-操作人员:杨钦
-
-出错时间:03/07/2024 15:45:20
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\WeekMeetingEdit.aspx.cs:行号 286
- 在 FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\WeekMeetingEdit.aspx.cs:行号 269
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/07/2024 16:45:48
-出错文件:http://localhost:8579/TestRun/Meeting/WeekMeetingEdit.aspx
-IP地址:::1
-操作人员:杨钦
-
-出错时间:03/07/2024 16:45:48
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\WeekMeetingEdit.aspx.cs:行号 286
- 在 FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\WeekMeetingEdit.aspx.cs:行号 269
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/07/2024 16:45:49
-出错文件:http://localhost:8579/TestRun/Meeting/WeekMeetingEdit.aspx
-IP地址:::1
-操作人员:杨钦
-
-出错时间:03/07/2024 16:45:49
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14204
- 在 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2181
-出错时间:03/07/2024 18:45:24
-出错时间:03/07/2024 18:45:24
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14228
- 在 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2046
-出错时间:03/07/2024 18:45:24
-出错时间:03/07/2024 18:45:24
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14220
- 在 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1942
-出错时间:03/07/2024 18:45:25
-出错时间:03/07/2024 18:45:25
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14020
- 在 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1884
-出错时间:03/07/2024 18:45:25
-出错时间:03/07/2024 18:45:25
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14204
- 在 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2181
-出错时间:03/07/2024 20:45:21
-出错时间:03/07/2024 20:45:21
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14228
- 在 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2046
-出错时间:03/07/2024 20:45:21
-出错时间:03/07/2024 20:45:21
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14220
- 在 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1942
-出错时间:03/07/2024 20:45:21
-出错时间:03/07/2024 20:45:21
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14020
- 在 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1884
-出错时间:03/07/2024 20:45:22
-出错时间:03/07/2024 20:45:22
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14204
- 在 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2181
-出错时间:03/07/2024 22:45:21
-出错时间:03/07/2024 22:45:22
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14228
- 在 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2046
-出错时间:03/07/2024 22:45:22
-出错时间:03/07/2024 22:45:22
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14220
- 在 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1942
-出错时间:03/07/2024 22:45:22
-出错时间:03/07/2024 22:45:22
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14020
- 在 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1884
-出错时间:03/07/2024 22:45:22
-出错时间:03/07/2024 22:45:22
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\WeekMeetingEdit.aspx.cs:行号 285
- 在 FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\WeekMeetingEdit.aspx.cs:行号 268
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/08/2024 14:12:38
-出错文件:http://localhost:8579/TestRun/Meeting/WeekMeetingEdit.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/08/2024 14:12:38
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\WeekMeetingEdit.aspx.cs:行号 285
- 在 FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\WeekMeetingEdit.aspx.cs:行号 268
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/08/2024 14:12:38
-出错文件:http://localhost:8579/TestRun/Meeting/WeekMeetingEdit.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/08/2024 14:12:38
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.SpecialMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\SpecialMeetingEdit.aspx.cs:行号 285
- 在 FineUIPro.Web.TestRun.Meeting.SpecialMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\SpecialMeetingEdit.aspx.cs:行号 268
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/08/2024 14:13:13
-出错文件:http://localhost:8579/TestRun/Meeting/SpecialMeetingEdit.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/08/2024 14:13:13
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.SpecialMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\SpecialMeetingEdit.aspx.cs:行号 285
- 在 FineUIPro.Web.TestRun.Meeting.SpecialMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\SpecialMeetingEdit.aspx.cs:行号 268
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/08/2024 14:13:14
-出错文件:http://localhost:8579/TestRun/Meeting/SpecialMeetingEdit.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/08/2024 14:13:14
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.SpecialMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\SpecialMeetingEdit.aspx.cs:行号 285
- 在 FineUIPro.Web.TestRun.Meeting.SpecialMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\SpecialMeetingEdit.aspx.cs:行号 268
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/08/2024 14:13:15
-出错文件:http://localhost:8579/TestRun/Meeting/SpecialMeetingEdit.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/08/2024 14:13:15
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\WeekMeetingEdit.aspx.cs:行号 292
- 在 FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\WeekMeetingEdit.aspx.cs:行号 275
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/08/2024 14:22:04
-出错文件:http://localhost:8579/TestRun/Meeting/WeekMeetingEdit.aspx?id=742da98e-3243-4ed6-b684-b7bb4837b304
-IP地址:::1
-操作人员:杨钦
-
-出错时间:03/08/2024 14:22:04
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit.SetCheckParentNode(TreeNode node) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\WeekMeetingEdit.aspx.cs:行号 292
- 在 FineUIPro.Web.TestRun.Meeting.WeekMeetingEdit.tvAttendMeetingsPerson_NodeCheck(Object sender, TreeCheckEventArgs e) 位置 E:\五环\SGGL_CWCEC\SGGL\FineUIPro.Web\TestRun\Meeting\WeekMeetingEdit.aspx.cs:行号 275
- 在 FineUIPro.Tree.OnNodeCheck(TreeCheckEventArgs e)
- 在 (Tree , TreeCheckEventArgs )
- 在 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)
-出错时间:03/08/2024 14:22:05
-出错文件:http://localhost:8579/TestRun/Meeting/WeekMeetingEdit.aspx?id=742da98e-3243-4ed6-b684-b7bb4837b304
-IP地址:::1
-操作人员:杨钦
-
-出错时间:03/08/2024 14:22:05
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14204
- 在 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2181
-出错时间:03/08/2024 17:03:12
-出错时间:03/08/2024 17:03:13
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14228
- 在 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2046
-出错时间:03/08/2024 17:03:13
-出错时间:03/08/2024 17:03:13
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14220
- 在 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1942
-出错时间:03/08/2024 17:03:13
-出错时间:03/08/2024 17:03:13
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14020
- 在 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1884
-出错时间:03/08/2024 17:03:13
-出错时间:03/08/2024 17:03:13
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14204
- 在 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2181
-出错时间:03/08/2024 19:03:12
-出错时间:03/08/2024 19:03:12
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14228
- 在 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2046
-出错时间:03/08/2024 19:03:12
-出错时间:03/08/2024 19:03:12
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14220
- 在 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1942
-出错时间:03/08/2024 19:03:12
-出错时间:03/08/2024 19:03:12
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14020
- 在 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1884
-出错时间:03/08/2024 19:03:12
-出错时间:03/08/2024 19:03:12
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14204
- 在 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2181
-出错时间:03/08/2024 21:03:12
-出错时间:03/08/2024 21:03:12
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14228
- 在 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2046
-出错时间:03/08/2024 21:03:12
-出错时间:03/08/2024 21:03:12
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14220
- 在 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1942
-出错时间:03/08/2024 21:03:12
-出错时间:03/08/2024 21:03:12
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14020
- 在 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 位置 E:\五环\SGGL_CWCEC\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1884
-出错时间:03/08/2024 21:03:12
-出错时间:03/08/2024 21:03:12
-
-=======
->>>>>>> 7772c5b6828d71f0eaf77c1945ac9ec596c86a91
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:执行超时已过期。完成操作之前已超时或服务器未响应。
-错误堆栈:
- 在 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.Linq.IQueryProvider.Execute[S](Expression expression)
- 在 System.Linq.Queryable.Count[TSource](IQueryable`1 source)
- 在 FineUIPro.Web.common.main_new.Page_Load(Object sender, EventArgs e) 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\common\main_new.aspx.cs:行号 103
- 在 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)
-----错误类型:Win32Exception
-----错误信息:
-----等待的操作过时。
-----错误堆栈:
- 出错时间:03/11/2024 13:57:14
-出错文件:http://localhost:8579/common/main_new.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/11/2024 13:57:22
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:执行超时已过期。完成操作之前已超时或服务器未响应。
-错误堆栈:
- 在 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.Linq.IQueryProvider.Execute[S](Expression expression)
- 在 System.Linq.Queryable.Count[TSource](IQueryable`1 source)
- 在 FineUIPro.Web.common.mainProject2.GetGeneralClosedNum() 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\common\mainProject2.aspx.cs:行号 194
- 在 FineUIPro.Web.common.mainProject2.getZgsj() 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\common\mainProject2.aspx.cs:行号 182
- 在 FineUIPro.Web.common.mainProject2.Page_Load(Object sender, EventArgs e) 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\common\mainProject2.aspx.cs:行号 92
- 在 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)
-----错误类型:Win32Exception
-----错误信息:
-----等待的操作过时。
-----错误堆栈:
- 出错时间:03/11/2024 14:13:02
-出错文件:http://localhost:8579/common/mainProject2.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/11/2024 14:13:02
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:执行超时已过期。完成操作之前已超时或服务器未响应。
-错误堆栈:
- 在 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)
- 在 BLL.InspectionManagementService.getInspectionManagementDetailListByCNProfessionalIdAndDate(String projectId, String cNProfessionalId, DateTime startDate, DateTime SoptDate, Boolean isOnceQualified) 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\CQMS\ProcessControl\InspectionManagementService.cs:行号 332
- 在 FineUIPro.Web.CQMS.ManageReport.MonthReportEdit.CheckLotBindStatisc(String cNProfessionalCode) 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReport\MonthReportEdit.aspx.cs:行号 524
- 在 FineUIPro.Web.CQMS.ManageReport.MonthReportEdit.Page_Load(Object sender, EventArgs e) 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReport\MonthReportEdit.aspx.cs:行号 111
- 在 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)
-----错误类型:Win32Exception
-----错误信息:
-----等待的操作过时。
-----错误堆栈:
- 出错时间:03/11/2024 14:17:25
-出错文件:http://localhost:8579/CQMS/ManageReport/MonthReportEdit.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/11/2024 14:17:38
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:执行超时已过期。完成操作之前已超时或服务器未响应。
-错误堆栈:
- 在 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)
- 在 BLL.InspectionManagementService.getInspectionManagementDetailListByCNProfessionalIdAndDate(String projectId, String cNProfessionalId, DateTime startDate, DateTime SoptDate, Boolean isOnceQualified) 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\CQMS\ProcessControl\InspectionManagementService.cs:行号 332
- 在 FineUIPro.Web.CQMS.ManageReport.MonthReportEdit.CheckLotBindStatisc(String cNProfessionalCode) 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReport\MonthReportEdit.aspx.cs:行号 524
- 在 FineUIPro.Web.CQMS.ManageReport.MonthReportEdit.Page_Load(Object sender, EventArgs e) 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReport\MonthReportEdit.aspx.cs:行号 111
- 在 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)
-----错误类型:Win32Exception
-----错误信息:
-----等待的操作过时。
-----错误堆栈:
- 出错时间:03/11/2024 14:18:52
-出错文件:http://localhost:8579/CQMS/ManageReport/MonthReportEdit.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/11/2024 14:19:03
-
-
-错误信息开始=====>
-错误类型:HttpException
-错误信息:文件“/CQMS/ManageReportNew/MonthReport.aspx”不存在。
-错误堆栈:
- 在 System.Web.UI.Util.CheckVirtualFileExists(VirtualPath virtualPath)
- 在 System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate)
- 在 System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate)
- 在 System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound)
- 在 System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp)
- 在 System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath)
- 在 System.Web.UI.PageHandlerFactory.GetHandler(HttpContext context, String requestType, String virtualPath, String path)
- 在 System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
- 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step)
- 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-出错时间:03/11/2024 15:24:21
-出错文件:http://localhost:8579/CQMS/ManageReportNew/MonthReport.aspx
-IP地址:::1
-
-出错时间:03/11/2024 15:24:21
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:参数化查询 '(@ProjectId nvarchar(4000))select ReportId, Period, StartDate, E' 需要参数 '@ProjectId',但未提供该参数。
-错误堆栈:
- 在 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
- 在 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
- 在 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
- 在 System.Data.SqlClient.SqlDataReader.get_MetaData()
- 在 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
- 在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable)
- 在 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\SQLHelper.cs:行号 311
- 在 FineUIPro.Web.CQMS.ManageReportNew.MonthReport.BindGrid() 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReport.aspx.cs:行号 32
- 在 FineUIPro.Web.CQMS.ManageReportNew.MonthReport.Page_Load(Object sender, EventArgs e) 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReport.aspx.cs:行号 19
- 在 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/11/2024 15:29:14
-出错文件:http://localhost:8579/CQMS/ManageReportNew/MonthReport.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/11/2024 15:29:14
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:参数化查询 '(@ProjectId nvarchar(4000))select Id, Sortid, StartDate, EndDate' 需要参数 '@ProjectId',但未提供该参数。
-错误堆栈:
- 在 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
- 在 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
- 在 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
- 在 System.Data.SqlClient.SqlDataReader.get_MetaData()
- 在 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
- 在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable)
- 在 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\SQLHelper.cs:行号 311
- 在 FineUIPro.Web.CQMS.ManageReportNew.MonthReport.BindGrid() 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReport.aspx.cs:行号 32
- 在 FineUIPro.Web.CQMS.ManageReportNew.MonthReport.Page_Load(Object sender, EventArgs e) 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReport.aspx.cs:行号 19
- 在 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/11/2024 15:31:35
-出错文件:http://localhost:8579/CQMS/ManageReportNew/MonthReport.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/11/2024 15:31:35
-
-
-错误信息开始=====>
-错误类型:HttpParseException
-错误信息:类型“FineUIPro.Form”不具有名为“table”的公共属性。
-错误堆栈:
- 在 System.Web.UI.TemplateParser.ProcessException(Exception ex)
- 在 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding)
- 在 System.Web.UI.TemplateParser.ParseString(String text, VirtualPath virtualPath, Encoding fileEncoding)
-----错误类型:HttpException
-----错误信息:
-----类型“FineUIPro.Form”不具有名为“table”的公共属性。
-----错误堆栈:
- 在 System.Web.UI.ControlBuilder.GetChildPropertyBuilder(String tagName, IDictionary attribs, Type& childType, TemplateParser templateParser, Boolean defaultProperty)
- 在 System.Web.UI.ControlBuilder.CreateChildBuilder(String filter, String tagName, IDictionary attribs, TemplateParser parser, ControlBuilder parentBuilder, String id, Int32 line, VirtualPath virtualPath, Type& childType, Boolean defaultProperty)
- 在 System.Web.UI.TemplateParser.ProcessBeginTag(Match match, String inputText)
- 在 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding)
-出错时间:03/11/2024 15:35:03
-出错文件:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx
-IP地址:::1
-
-出错时间:03/11/2024 15:35:03
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx(39): error CS0123: “btnSave_Click”的重载均与委托“System.EventHandler”不匹配
-错误堆栈:
- 在 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/11/2024 15:38:16
-出错文件:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx
-IP地址:::1
-
-出错时间:03/11/2024 15:38:16
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx(39): error CS0123: “btnSave_Click”的重载均与委托“System.EventHandler”不匹配
-错误堆栈:
- 在 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/11/2024 15:38:40
-出错文件:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx
-IP地址:::1
-
-出错时间:03/11/2024 15:38:40
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx(39): error CS0123: “btnSave_Click”的重载均与委托“System.EventHandler”不匹配
-错误堆栈:
- 在 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/11/2024 15:39:25
-出错文件:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx
-IP地址:::1
-
-出错时间:03/11/2024 15:39:25
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 FineUIPro.Web.CQMS.ManageReportNew.MonthReportEdit.Page_Load(Object sender, EventArgs e) 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.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)
-出错时间:03/11/2024 15:41:00
-出错文件:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/11/2024 15:41:00
-
-插入数据失败,原因:不能将值 NULL 插入列 'Id',表 'SGGLDB_WH.dbo.Report_WeekAndMonthReport_New';列不允许有 Null 值。INSERT 失败。
-语句已终止。
-插入数据失败,原因:不能将值 NULL 插入列 'Id',表 'SGGLDB_WH.dbo.Report_WeekAndMonthReport_New';列不允许有 Null 值。INSERT 失败。
-语句已终止。
-
-错误信息开始=====>
-错误类型:HttpException
-错误信息:DataBinding:“System.Data.DataRowView”不包含名为“ReportId”的属性。
-错误堆栈:
- 在 System.Web.UI.DataBinder.GetPropertyValue(Object container, String propName)
- 在 System.Web.UI.DataBinder.Eval(Object container, String[] expressionParts)
- 在 System.Web.UI.DataBinder.Eval(Object container, String expression)
- 在 System.Web.UI.TemplateControl.Eval(String expression)
- 在 ASP.cqms_managereportnew_monthreport_aspx.__DataBindingLabel41(Object sender, EventArgs e) 位置 e:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReport.aspx:行号 43
- 在 System.Web.UI.Control.OnDataBinding(EventArgs e)
- 在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
- 在 System.Web.UI.Control.DataBind()
- 在 System.Web.UI.Control.DataBindChildren()
- 在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
- 在 System.Web.UI.Control.DataBind()
- 在 (Control )
- 在 FineUIPro.GridRow.JKAqhrYRKGjUrputGryVTdIrcyJN()
- 在 (GridRow )
- 在 FineUIPro.Grid.JKAqhrYRKGjUrputGryVTdIrcyJN(Int32 , Object )
- 在 (Grid , Int32 , Object )
- 在 FineUIPro.Grid.BCddVmyfIadUytlhvgnchfKxYmAe(DataTable , Boolean )
- 在 (Grid , DataTable , Boolean )
- 在 FineUIPro.Grid.DataBind(Boolean keepCurrentData)
- 在 (Grid , Boolean )
- 在 FineUIPro.Grid.DataBind()
- 在 FineUIPro.Web.CQMS.ManageReportNew.MonthReport.BindGrid()
- 在 FineUIPro.Web.CQMS.ManageReportNew.MonthReport.Window1_Close(Object sender, WindowCloseEventArgs e)
- 在 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)
-出错时间:03/11/2024 15:42:41
-出错文件:http://localhost:8579/CQMS/ManageReportNew/MonthReport.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/11/2024 15:42:41
-
-插入数据失败,原因:违反了 PRIMARY KEY 约束“PK_Report_WeekAndMonthReport_New”。不能在对象“dbo.Report_WeekAndMonthReport_New”中插入重复键。重复键值为 (a7666577-2499-41a6-a724-98150978bc41)。
-语句已终止。
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx(104): error CS1061: “ASP.cqms_managereportnew_monthreportedit_aspx”不包含“changeFrameHeight”的定义,并且找不到可接受类型为“ASP.cqms_managereportnew_monthreportedit_aspx”的第一个参数的扩展方法“changeFrameHeight”(是否缺少 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)
-出错时间:03/11/2024 16:17:15
-出错文件:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx
-IP地址:::1
-
-出错时间:03/11/2024 16:17:15
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx(104): error CS1061: “ASP.cqms_managereportnew_monthreportedit_aspx”不包含“changeFrameHeight”的定义,并且找不到可接受类型为“ASP.cqms_managereportnew_monthreportedit_aspx”的第一个参数的扩展方法“changeFrameHeight”(是否缺少 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/11/2024 16:18:13
-出错文件:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx
-IP地址:::1
-
-出错时间:03/11/2024 16:18:13
-
-
-错误信息开始=====>
-错误类型:HttpException
-错误信息:服务器标记的格式不正确。
-错误堆栈:
- 在 System.Web.UI.TemplateParser.ProcessError(String message)
- 在 System.Web.UI.TemplateParser.DetectSpecialServerTagError(String text, Int32 textPos)
- 在 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding)
- 在 System.Web.UI.TemplateParser.ParseString(String text, VirtualPath virtualPath, Encoding fileEncoding)
-出错时间:03/11/2024 17:29:27
-出错文件:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx
-IP地址:::1
-
-出错时间:03/11/2024 17:29:27
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx(104): error CS1041: 应输入标识符;“this”是关键字
-错误堆栈:
- 在 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/11/2024 17:36:38
-出错文件:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx
-IP地址:::1
-
-出错时间:03/11/2024 17:36:38
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx(104): error CS1041: 应输入标识符;“this”是关键字
-错误堆栈:
- 在 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/11/2024 17:39:29
-出错文件:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx
-IP地址:::1
-
-出错时间:03/11/2024 17:39:29
-
-
-错误信息开始=====>
-错误类型:HttpParseException
-错误信息:基类包括字段“hidReportId”,但其类型(System.Web.UI.HtmlControls.HtmlInputHidden)与控件(System.Web.UI.HtmlControls.HtmlInputText)的类型不兼容。
-错误堆栈:
- 在 System.Web.Compilation.BaseTemplateCodeDomTreeGenerator.BuildFieldDeclaration(ControlBuilder builder)
- 在 System.Web.Compilation.BaseTemplateCodeDomTreeGenerator.BuildSourceDataTreeFromBuilder(ControlBuilder builder, Boolean fInTemplate, Boolean topLevelControlInTemplate, PropertyEntry pse)
- 在 System.Web.Compilation.BaseTemplateCodeDomTreeGenerator.BuildSourceDataTreeFromBuilder(ControlBuilder builder, Boolean fInTemplate, Boolean topLevelControlInTemplate, PropertyEntry pse)
- 在 System.Web.Compilation.BaseTemplateCodeDomTreeGenerator.BuildSourceDataTreeFromBuilder(ControlBuilder builder, Boolean fInTemplate, Boolean topLevelControlInTemplate, PropertyEntry pse)
- 在 System.Web.Compilation.TemplateControlCodeDomTreeGenerator.BuildMiscClassMembers()
- 在 System.Web.Compilation.PageCodeDomTreeGenerator.BuildMiscClassMembers()
- 在 System.Web.Compilation.BaseCodeDomTreeGenerator.BuildSourceDataTree()
- 在 System.Web.Compilation.BaseCodeDomTreeGenerator.GetCodeDomTree(CodeDomProvider codeDomProvider, StringResourceBuilder stringResourceBuilder, VirtualPath virtualPath)
- 在 System.Web.Compilation.BaseTemplateBuildProvider.GenerateCode(AssemblyBuilder assemblyBuilder)
- 在 System.Web.Compilation.AssemblyBuilder.AddBuildProvider(BuildProvider buildProvider)
-出错时间:03/12/2024 09:51:40
-出错文件:http://localhost:8579/CQMS/ManageReportNew/MonthReport20.aspx
-IP地址:::1
-
-出错时间:03/12/2024 09:51:40
-
-
-错误信息开始=====>
-错误类型:HttpException
-错误信息:控件包含代码块(即 <% ... %>),因此无法修改控件集合。
-错误堆栈:
- 在 System.Web.UI.ControlCollection.AddAt(Int32 index, Control child)
- 在 FineUIPro.Web.PageBase.OnInit(EventArgs e) 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\common\PageBase.cs:行号 227
- 在 System.Web.UI.Control.InitRecursive(Control namingContainer)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/12/2024 09:58:10
-出错文件:http://localhost:8579/CQMS/ManageReportNew/MonthReport20.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/12/2024 09:58:10
-
-
-错误信息开始=====>
-错误类型:HttpException
-错误信息:控件包含代码块(即 <% ... %>),因此无法修改控件集合。
-错误堆栈:
- 在 System.Web.UI.ControlCollection.AddAt(Int32 index, Control child)
- 在 FineUIPro.Web.PageBase.OnInit(EventArgs e) 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\common\PageBase.cs:行号 227
- 在 System.Web.UI.Control.InitRecursive(Control namingContainer)
- 在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
-出错时间:03/12/2024 09:58:12
-出错文件:http://localhost:8579/CQMS/ManageReportNew/MonthReport20.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/12/2024 09:58:12
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:参数化查询 '(@ProjectId nvarchar(4000))select ReportId, Period, StartDate, E' 需要参数 '@ProjectId',但未提供该参数。
-错误堆栈:
- 在 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
- 在 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
- 在 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
- 在 System.Data.SqlClient.SqlDataReader.get_MetaData()
- 在 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
- 在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable)
- 在 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\SQLHelper.cs:行号 311
- 在 FineUIPro.Web.CQMS.ManageReport.MonthReport.BindGrid() 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReport\MonthReport.aspx.cs:行号 30
- 在 FineUIPro.Web.CQMS.ManageReport.MonthReport.Page_Load(Object sender, EventArgs e) 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReport\MonthReport.aspx.cs:行号 18
- 在 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/12/2024 10:27:57
-出错文件:http://localhost:8579/CQMS/ManageReport/MonthReport.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/12/2024 10:27:57
-
-
-错误信息开始=====>
-错误类型:HttpParseException
-错误信息:Runat 特性必须具有值 Server。
-错误堆栈:
- 在 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
-----错误信息:
-----Runat 特性必须具有值 Server。
-----错误堆栈:
- 在 System.Web.UI.TemplateParser.ProcessError(String message)
- 在 System.Web.UI.TemplateParser.ProcessAttributes(String text, Match match, ParsedAttributeCollection& attribs, Boolean fDirective, String& duplicateAttribute)
- 在 System.Web.UI.TemplateParser.ProcessBeginTag(Match match, String inputText)
- 在 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding)
-出错时间:03/12/2024 10:49:18
-出错文件:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx
-IP地址:::1
-
-出错时间:03/12/2024 10:49:18
-
-
-错误信息开始=====>
-错误类型:HttpParseException
-错误信息:类型“FineUIPro.Toolbar”不具有名为“Button”的公共属性。
-错误堆栈:
- 在 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.Toolbar”不具有名为“Button”的公共属性。
-----错误堆栈:
- 在 System.Web.UI.ControlBuilder.GetChildPropertyBuilder(String tagName, IDictionary attribs, Type& childType, TemplateParser templateParser, Boolean defaultProperty)
- 在 System.Web.UI.ControlBuilder.CreateChildBuilder(String filter, String tagName, IDictionary attribs, TemplateParser parser, ControlBuilder parentBuilder, String id, Int32 line, VirtualPath virtualPath, Type& childType, Boolean defaultProperty)
- 在 System.Web.UI.TemplateParser.ProcessBeginTag(Match match, String inputText)
- 在 System.Web.UI.TemplateParser.ParseStringInternal(String text, Encoding fileEncoding)
-出错时间:03/12/2024 10:57:49
-出错文件:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx
-IP地址:::1
-
-出错时间:03/12/2024 10:57:49
-
-
-错误信息开始=====>
-错误类型:HttpParseException
-错误信息:类型“FineUIPro.Toolbar”不具有名为“ToolbarPosition”的公共属性。
-错误堆栈:
- 在 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.Toolbar”不具有名为“ToolbarPosition”的公共属性。
-----错误堆栈:
- 在 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)
-出错时间:03/12/2024 11:00:25
-出错文件:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx
-IP地址:::1
-
-出错时间:03/12/2024 11:00:25
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:参数化查询 '(@ProjectId nvarchar(4000))select ReportId, Period, StartDate, E' 需要参数 '@ProjectId',但未提供该参数。
-错误堆栈:
- 在 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
- 在 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
- 在 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
- 在 System.Data.SqlClient.SqlDataReader.get_MetaData()
- 在 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
- 在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable)
- 在 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\SQLHelper.cs:行号 311
- 在 FineUIPro.Web.CQMS.ManageReport.MonthReport.BindGrid() 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReport\MonthReport.aspx.cs:行号 30
- 在 FineUIPro.Web.CQMS.ManageReport.MonthReport.Page_Load(Object sender, EventArgs e) 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReport\MonthReport.aspx.cs:行号 18
- 在 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/12/2024 14:53:51
-出错文件:http://localhost:8579/CQMS/ManageReport/MonthReport.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/12/2024 14:53:51
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:参数化查询 '(@ProjectId nvarchar(4000))select C.*,CN.ProfessionalName,C.CNPr' 需要参数 '@ProjectId',但未提供该参数。
-错误堆栈:
- 在 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
- 在 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
- 在 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
- 在 System.Data.SqlClient.SqlDataReader.get_MetaData()
- 在 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
- 在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable)
- 在 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\SQLHelper.cs:行号 311
- 在 FineUIPro.Web.CQMS.Comprehensive.InspectionTestPlan.BindGrid() 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\Comprehensive\InspectionTestPlan.aspx.cs:行号 57
- 在 FineUIPro.Web.CQMS.Comprehensive.InspectionTestPlan.Page_Load(Object sender, EventArgs e) 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\Comprehensive\InspectionTestPlan.aspx.cs:行号 25
- 在 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/18/2024 17:30:10
-出错文件:http://localhost:8579/CQMS/Comprehensive/InspectionTestPlan.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/18/2024 17:30:10
-
-
-错误信息开始=====>
-错误类型:SqlException
-错误信息:参数化查询 '(@ProjectId nvarchar(4000))select QualityAccidentId, time, Place' 需要参数 '@ProjectId',但未提供该参数。
-错误堆栈:
- 在 System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
- 在 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
- 在 System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
- 在 System.Data.SqlClient.SqlDataReader.TryConsumeMetaData()
- 在 System.Data.SqlClient.SqlDataReader.get_MetaData()
- 在 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption, Boolean shouldCacheForAlwaysEncrypted)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource`1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry)
- 在 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)
- 在 System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior)
- 在 System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader(CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable[] dataTables, Int32 startRecord, Int32 maxRecords, IDbCommand command, CommandBehavior behavior)
- 在 System.Data.Common.DbDataAdapter.Fill(DataTable dataTable)
- 在 BLL.SQLHelper.GetDataTableRunText(String strSql, SqlParameter[] parameters) 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\SQLHelper.cs:行号 311
- 在 FineUIPro.Web.Comprehensive.QualityAccident.BindGrid() 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\Comprehensive\QualityAccident.aspx.cs:行号 41
- 在 FineUIPro.Web.Comprehensive.QualityAccident.Page_Load(Object sender, EventArgs e) 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\Comprehensive\QualityAccident.aspx.cs:行号 23
- 在 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/18/2024 18:09:49
-出错文件:http://localhost:8579/CQMS/Comprehensive/QualityAccident.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/18/2024 18:09:49
-
-
-错误信息开始=====>
-错误类型:HttpCompileException
-错误信息:e:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\Comprehensive\ReviewDrawings.aspx(32): error CS1061: “ASP.cqms_comprehensive_reviewdrawings_aspx”不包含“btnImport_Click”的定义,并且找不到可接受类型为“ASP.cqms_comprehensive_reviewdrawings_aspx”的第一个参数的扩展方法“btnImport_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)
-出错时间:03/19/2024 09:34:00
-出错文件:http://localhost:8579/CQMS/Comprehensive/ReviewDrawings.aspx
-IP地址:::1
-
-出错时间:03/19/2024 09:34:00
-
-
-错误信息开始=====>
-错误类型:HttpException
-错误信息:DataBinding:“System.Data.DataRowView”不包含名为“DesignDrawingsId”的属性。
-错误堆栈:
- 在 System.Web.UI.DataBinder.GetPropertyValue(Object container, String propName)
- 在 System.Web.UI.DataBinder.Eval(Object container, String[] expressionParts)
- 在 System.Web.UI.DataBinder.Eval(Object container, String expression)
- 在 System.Web.UI.TemplateControl.Eval(String expression)
- 在 ASP.cqms_comprehensive_reviewdrawings_aspx.__DataBindinglbtnFileUrl(Object sender, EventArgs e) 位置 e:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\Comprehensive\ReviewDrawings.aspx:行号 78
- 在 System.Web.UI.Control.OnDataBinding(EventArgs e)
- 在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
- 在 System.Web.UI.Control.DataBind()
- 在 System.Web.UI.Control.DataBindChildren()
- 在 System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding)
- 在 System.Web.UI.Control.DataBind()
- 在 (Control )
- 在 FineUIPro.GridRow.JKAqhrYRKGjUrputGryVTdIrcyJN()
- 在 (GridRow )
- 在 FineUIPro.Grid.JKAqhrYRKGjUrputGryVTdIrcyJN(Int32 , Object )
- 在 (Grid , Int32 , Object )
- 在 FineUIPro.Grid.BCddVmyfIadUytlhvgnchfKxYmAe(DataTable , Boolean )
- 在 (Grid , DataTable , Boolean )
- 在 FineUIPro.Grid.DataBind(Boolean keepCurrentData)
- 在 (Grid , Boolean )
- 在 FineUIPro.Grid.DataBind()
- 在 FineUIPro.Web.CQMS.Comprehensive.ReviewDrawings.BindGrid()
- 在 FineUIPro.Web.CQMS.Comprehensive.ReviewDrawings.Window1_Close(Object sender, WindowCloseEventArgs e)
- 在 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)
-出错时间:03/19/2024 09:35:59
-出错文件:http://localhost:8579/CQMS/Comprehensive/ReviewDrawings.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/19/2024 09:35:59
-
-
-错误信息开始=====>
-错误类型:NullReferenceException
-错误信息:未将对象引用设置到对象的实例。
-错误堆栈:
- 在 (Object )
- 在 FineUIPro.GridRow.uwEUVXJIBfEGVvHqMvTlecFpBACr()
- 在 (GridRow )
- 在 FineUIPro.GridRow.InitTemplateContainers()
- 在 (GridRow )
- 在 FineUIPro.Grid.JKAqhrYRKGjUrputGryVTdIrcyJN(Int32 , Object )
- 在 (Grid , Int32 , Object )
- 在 FineUIPro.Grid.AYqoKqSqsgZakIKkWuWxQURnixDO(IEnumerable , Boolean )
- 在 (Grid , IEnumerable , Boolean )
- 在 FineUIPro.Grid.DataBind(Boolean keepCurrentData)
- 在 (Grid , Boolean )
- 在 FineUIPro.Grid.DataBind()
- 在 FineUIPro.Web.CQMS.ManageReportNew.MonthReportEdit.loadDesignChangeOrder() 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx.cs:行号 705
- 在 FineUIPro.Web.CQMS.ManageReportNew.MonthReportEdit.lodAllGrid(String objType) 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx.cs:行号 152
- 在 FineUIPro.Web.CQMS.ManageReportNew.MonthReportEdit.Page_Load(Object sender, EventArgs e) 位置 E:\2023公司项目\五环新\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\CQMS\ManageReportNew\MonthReportEdit.aspx.cs:行号 113
- 在 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/19/2024 10:40:05
-出错文件:http://localhost:8579/CQMS/ManageReportNew/MonthReportEdit.aspx?reportId=40d1c54d-ba0b-468d-a9a7-270797565e1b
-IP地址:::1
-操作人员:JT
-
-出错时间:03/19/2024 10:40:05
-
-
-错误信息开始=====>
-错误类型:IndexOutOfRangeException
-错误信息:无法找到列 Months。
-错误堆栈:
- 在 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:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\common\PageBase.cs:行号 590
- 在 FineUIPro.Web.Personal.TestRunMonthSummary.BindGrid() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Personal\TestRunMonthSummary.aspx.cs:行号 58
- 在 FineUIPro.Web.Personal.TestRunMonthSummary.Window1_Close(Object sender, EventArgs e) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Personal\TestRunMonthSummary.aspx.cs:行号 201
- 在 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)
-出错时间:03/21/2024 16:29:19
-出错文件:http://localhost:8579/Personal/TestRunMonthSummary.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/21/2024 16:29:19
-
-
-错误信息开始=====>
-错误类型:IndexOutOfRangeException
-错误信息:无法找到列 Months。
-错误堆栈:
- 在 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:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\common\PageBase.cs:行号 590
- 在 FineUIPro.Web.Personal.TestRunMonthSummary.BindGrid() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Personal\TestRunMonthSummary.aspx.cs:行号 58
- 在 FineUIPro.Web.Personal.TestRunMonthSummary.Page_Load(Object sender, EventArgs e) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\FineUIPro.Web\Personal\TestRunMonthSummary.aspx.cs:行号 28
- 在 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/21/2024 16:29:20
-出错文件:http://localhost:8579/Personal/TestRunMonthSummary.aspx
-IP地址:::1
-操作人员:JT
-
-出错时间:03/21/2024 16:29:20
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetSupervise_SubUnitReportListToSUB() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14204
- 在 BLL.CNCECHSSEWebService.getSupervise_SubUnitReport() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2181
-出错时间:03/22/2024 13:09:07
-出错时间:03/22/2024 13:09:08
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckInfo_Table8ItemListToSUB(String unitId) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14228
- 在 BLL.CNCECHSSEWebService.getCheck_CheckInfo_Table8Item() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 2046
-出错时间:03/22/2024 13:09:08
-出错时间:03/22/2024 13:09:08
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetCheck_CheckRectifyListToSUB(String unitId) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14220
- 在 BLL.CNCECHSSEWebService.getCheck_CheckRectify() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1942
-出错时间:03/22/2024 13:09:08
-出错时间:03/22/2024 13:09:08
-
-
-错误信息开始=====>
-错误类型:ArgumentException
-错误信息:提供的 URI 方案“http”无效,应为“https”。
-参数名: via
-错误堆栈:
- 在 System.ServiceModel.Channels.TransportChannelFactory`1.ValidateScheme(Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.ValidateCreateChannelParameters(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.HttpsChannelFactory`1.OnCreateChannelCore(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.HttpChannelFactory`1.OnCreateChannel(EndpointAddress remoteAddress, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.InternalCreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ChannelFactoryBase`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.ServiceChannelFactoryOverRequest.CreateInnerChannelBinder(EndpointAddress to, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateServiceChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.Channels.ServiceChannelFactory.CreateChannel(Type channelType, EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel(EndpointAddress address, Uri via)
- 在 System.ServiceModel.ChannelFactory`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannel()
- 在 System.ServiceModel.ClientBase`1.CreateChannelInternal()
- 在 System.ServiceModel.ClientBase`1.get_Channel()
- 在 BLL.CNCECHSSEService.HSSEServiceClient.GetInformation_UrgeReportToSUB(String unitId) 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\Service References\CNCECHSSEService\Reference.cs:行号 14020
- 在 BLL.CNCECHSSEWebService.getInformation_UrgeReport() 位置 E:\工作\五环施工平台\CNCEC_SUBQHSE_WUHUAN\SGGL\BLL\WebService\CNCECHSSEWebService.cs:行号 1884
-出错时间:03/22/2024 13:09:08
-出错时间:03/22/2024 13:09:08
-
diff --git a/SGGL/FineUIPro.Web/File/Word/CQMS/项目质量月报.doc b/SGGL/FineUIPro.Web/File/Word/CQMS/项目质量月报.doc
new file mode 100644
index 00000000..59f86f36
Binary files /dev/null and b/SGGL/FineUIPro.Web/File/Word/CQMS/项目质量月报.doc differ
diff --git a/SGGL/FineUIPro.Web/Web.config b/SGGL/FineUIPro.Web/Web.config
index 56282e91..6605fbff 100644
--- a/SGGL/FineUIPro.Web/Web.config
+++ b/SGGL/FineUIPro.Web/Web.config
@@ -12,7 +12,7 @@
-
+
diff --git a/SGGL/Model/Model.cs b/SGGL/Model/Model.cs
index 30376e4b..60a6da57 100644
--- a/SGGL/Model/Model.cs
+++ b/SGGL/Model/Model.cs
@@ -1970,6 +1970,9 @@ namespace Model
partial void InsertReport_ConstructionProblems(Report_ConstructionProblems instance);
partial void UpdateReport_ConstructionProblems(Report_ConstructionProblems instance);
partial void DeleteReport_ConstructionProblems(Report_ConstructionProblems instance);
+ partial void InsertReport_CQMS_MonthReportItem(Report_CQMS_MonthReportItem instance);
+ partial void UpdateReport_CQMS_MonthReportItem(Report_CQMS_MonthReportItem instance);
+ partial void DeleteReport_CQMS_MonthReportItem(Report_CQMS_MonthReportItem instance);
partial void InsertReport_CqmsTarget(Report_CqmsTarget instance);
partial void UpdateReport_CqmsTarget(Report_CqmsTarget instance);
partial void DeleteReport_CqmsTarget(Report_CqmsTarget instance);
@@ -7810,6 +7813,14 @@ namespace Model
}
}
+ public System.Data.Linq.Table Report_CQMS_MonthReportItem
+ {
+ get
+ {
+ return this.GetTable();
+ }
+ }
+
public System.Data.Linq.Table Report_CqmsTarget
{
get
@@ -39240,8 +39251,6 @@ namespace Model
private EntitySet _RealName_SynchroSet;
- private EntitySet _Report_ConstructionProblems;
-
private EntitySet _SecuritySystem_SafetyOrganization;
private EntitySet _SitePerson_DayReportDetail;
@@ -39498,7 +39507,6 @@ namespace Model
this._QualityAudit_SubUnitQuality = new EntitySet(new Action(this.attach_QualityAudit_SubUnitQuality), new Action(this.detach_QualityAudit_SubUnitQuality));
this._QualityAudit_SubUnitQualityAuditDetail = new EntitySet(new Action(this.attach_QualityAudit_SubUnitQualityAuditDetail), new Action(this.detach_QualityAudit_SubUnitQualityAuditDetail));
this._RealName_SynchroSet = new EntitySet(new Action(this.attach_RealName_SynchroSet), new Action(this.detach_RealName_SynchroSet));
- this._Report_ConstructionProblems = new EntitySet(new Action(this.attach_Report_ConstructionProblems), new Action(this.detach_Report_ConstructionProblems));
this._SecuritySystem_SafetyOrganization = new EntitySet(new Action(this.attach_SecuritySystem_SafetyOrganization), new Action(this.detach_SecuritySystem_SafetyOrganization));
this._SitePerson_DayReportDetail = new EntitySet(new Action(this.attach_SitePerson_DayReportDetail), new Action(this.detach_SitePerson_DayReportDetail));
this._SitePerson_MonthReportDetail = new EntitySet(new Action(this.attach_SitePerson_MonthReportDetail), new Action(this.detach_SitePerson_MonthReportDetail));
@@ -41976,19 +41984,6 @@ namespace Model
}
}
- [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Report_ConstructionProblems_Base_Unit", Storage="_Report_ConstructionProblems", ThisKey="UnitId", OtherKey="UnitId", DeleteRule="NO ACTION")]
- public EntitySet Report_ConstructionProblems
- {
- get
- {
- return this._Report_ConstructionProblems;
- }
- set
- {
- this._Report_ConstructionProblems.Assign(value);
- }
- }
-
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_SecuritySystem_SafetyOrganization_Base_Unit", Storage="_SecuritySystem_SafetyOrganization", ThisKey="UnitId", OtherKey="UnitId", DeleteRule="NO ACTION")]
public EntitySet SecuritySystem_SafetyOrganization
{
@@ -44121,18 +44116,6 @@ namespace Model
entity.Base_Unit = null;
}
- private void attach_Report_ConstructionProblems(Report_ConstructionProblems entity)
- {
- this.SendPropertyChanging();
- entity.Base_Unit = this;
- }
-
- private void detach_Report_ConstructionProblems(Report_ConstructionProblems entity)
- {
- this.SendPropertyChanging();
- entity.Base_Unit = null;
- }
-
private void attach_SecuritySystem_SafetyOrganization(SecuritySystem_SafetyOrganization entity)
{
this.SendPropertyChanging();
@@ -306573,10 +306556,6 @@ namespace Model
private string _Remark;
- private EntityRef _Base_Unit;
-
- private EntityRef _Report_WeekAndMonthReport;
-
#region 可扩展性方法定义
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -306599,8 +306578,6 @@ namespace Model
public Report_ConstructionProblems()
{
- this._Base_Unit = default(EntityRef);
- this._Report_WeekAndMonthReport = default(EntityRef);
OnCreated();
}
@@ -306635,10 +306612,6 @@ namespace Model
{
if ((this._ReportId != value))
{
- if (this._Report_WeekAndMonthReport.HasLoadedOrAssignedValue)
- {
- throw new System.Data.Linq.ForeignKeyReferenceAlreadyHasValueException();
- }
this.OnReportIdChanging(value);
this.SendPropertyChanging();
this._ReportId = value;
@@ -306659,10 +306632,6 @@ namespace Model
{
if ((this._UnitId != value))
{
- if (this._Base_Unit.HasLoadedOrAssignedValue)
- {
- throw new System.Data.Linq.ForeignKeyReferenceAlreadyHasValueException();
- }
this.OnUnitIdChanging(value);
this.SendPropertyChanging();
this._UnitId = value;
@@ -306752,70 +306721,280 @@ namespace Model
}
}
- [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Report_ConstructionProblems_Base_Unit", Storage="_Base_Unit", ThisKey="UnitId", OtherKey="UnitId", IsForeignKey=true)]
- public Base_Unit Base_Unit
+ public event PropertyChangingEventHandler PropertyChanging;
+
+ public event PropertyChangedEventHandler PropertyChanged;
+
+ protected virtual void SendPropertyChanging()
+ {
+ if ((this.PropertyChanging != null))
+ {
+ this.PropertyChanging(this, emptyChangingEventArgs);
+ }
+ }
+
+ protected virtual void SendPropertyChanged(String propertyName)
+ {
+ if ((this.PropertyChanged != null))
+ {
+ this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Report_CQMS_MonthReportItem")]
+ public partial class Report_CQMS_MonthReportItem : INotifyPropertyChanging, INotifyPropertyChanged
+ {
+
+ private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
+
+ private string _Id;
+
+ private string _ReportId;
+
+ private string _ReType;
+
+ private string _ContentName;
+
+ private System.Nullable _MonthsCount;
+
+ private System.Nullable _ProjectCount;
+
+ private string _RectificationRate;
+
+ private System.Nullable _MonthsBackCount;
+
+ private System.Nullable _TotalNoBackCount;
+
+ private string _Remarks;
+
+ #region 可扩展性方法定义
+ partial void OnLoaded();
+ partial void OnValidate(System.Data.Linq.ChangeAction action);
+ partial void OnCreated();
+ partial void OnIdChanging(string value);
+ partial void OnIdChanged();
+ partial void OnReportIdChanging(string value);
+ partial void OnReportIdChanged();
+ partial void OnReTypeChanging(string value);
+ partial void OnReTypeChanged();
+ partial void OnContentNameChanging(string value);
+ partial void OnContentNameChanged();
+ partial void OnMonthsCountChanging(System.Nullable value);
+ partial void OnMonthsCountChanged();
+ partial void OnProjectCountChanging(System.Nullable value);
+ partial void OnProjectCountChanged();
+ partial void OnRectificationRateChanging(string value);
+ partial void OnRectificationRateChanged();
+ partial void OnMonthsBackCountChanging(System.Nullable value);
+ partial void OnMonthsBackCountChanged();
+ partial void OnTotalNoBackCountChanging(System.Nullable value);
+ partial void OnTotalNoBackCountChanged();
+ partial void OnRemarksChanging(string value);
+ partial void OnRemarksChanged();
+ #endregion
+
+ public Report_CQMS_MonthReportItem()
+ {
+ OnCreated();
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Id", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
+ public string Id
{
get
{
- return this._Base_Unit.Entity;
+ return this._Id;
}
set
{
- Base_Unit previousValue = this._Base_Unit.Entity;
- if (((previousValue != value)
- || (this._Base_Unit.HasLoadedOrAssignedValue == false)))
+ if ((this._Id != value))
{
+ this.OnIdChanging(value);
this.SendPropertyChanging();
- if ((previousValue != null))
- {
- this._Base_Unit.Entity = null;
- previousValue.Report_ConstructionProblems.Remove(this);
- }
- this._Base_Unit.Entity = value;
- if ((value != null))
- {
- value.Report_ConstructionProblems.Add(this);
- this._UnitId = value.UnitId;
- }
- else
- {
- this._UnitId = default(string);
- }
- this.SendPropertyChanged("Base_Unit");
+ this._Id = value;
+ this.SendPropertyChanged("Id");
+ this.OnIdChanged();
}
}
}
- [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Report_ConstructionProblems_Report_WeekAndMonthReport", Storage="_Report_WeekAndMonthReport", ThisKey="ReportId", OtherKey="ReportId", IsForeignKey=true)]
- public Report_WeekAndMonthReport Report_WeekAndMonthReport
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ReportId", DbType="NVarChar(50)")]
+ public string ReportId
{
get
{
- return this._Report_WeekAndMonthReport.Entity;
+ return this._ReportId;
}
set
{
- Report_WeekAndMonthReport previousValue = this._Report_WeekAndMonthReport.Entity;
- if (((previousValue != value)
- || (this._Report_WeekAndMonthReport.HasLoadedOrAssignedValue == false)))
+ if ((this._ReportId != value))
{
+ this.OnReportIdChanging(value);
this.SendPropertyChanging();
- if ((previousValue != null))
- {
- this._Report_WeekAndMonthReport.Entity = null;
- previousValue.Report_ConstructionProblems.Remove(this);
- }
- this._Report_WeekAndMonthReport.Entity = value;
- if ((value != null))
- {
- value.Report_ConstructionProblems.Add(this);
- this._ReportId = value.ReportId;
- }
- else
- {
- this._ReportId = default(string);
- }
- this.SendPropertyChanged("Report_WeekAndMonthReport");
+ this._ReportId = value;
+ this.SendPropertyChanged("ReportId");
+ this.OnReportIdChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ReType", DbType="NVarChar(20)")]
+ public string ReType
+ {
+ get
+ {
+ return this._ReType;
+ }
+ set
+ {
+ if ((this._ReType != value))
+ {
+ this.OnReTypeChanging(value);
+ this.SendPropertyChanging();
+ this._ReType = value;
+ this.SendPropertyChanged("ReType");
+ this.OnReTypeChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContentName", DbType="NVarChar(50)")]
+ public string ContentName
+ {
+ get
+ {
+ return this._ContentName;
+ }
+ set
+ {
+ if ((this._ContentName != value))
+ {
+ this.OnContentNameChanging(value);
+ this.SendPropertyChanging();
+ this._ContentName = value;
+ this.SendPropertyChanged("ContentName");
+ this.OnContentNameChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MonthsCount", DbType="Int")]
+ public System.Nullable MonthsCount
+ {
+ get
+ {
+ return this._MonthsCount;
+ }
+ set
+ {
+ if ((this._MonthsCount != value))
+ {
+ this.OnMonthsCountChanging(value);
+ this.SendPropertyChanging();
+ this._MonthsCount = value;
+ this.SendPropertyChanged("MonthsCount");
+ this.OnMonthsCountChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectCount", DbType="Int")]
+ public System.Nullable ProjectCount
+ {
+ get
+ {
+ return this._ProjectCount;
+ }
+ set
+ {
+ if ((this._ProjectCount != value))
+ {
+ this.OnProjectCountChanging(value);
+ this.SendPropertyChanging();
+ this._ProjectCount = value;
+ this.SendPropertyChanged("ProjectCount");
+ this.OnProjectCountChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RectificationRate", DbType="NVarChar(50)")]
+ public string RectificationRate
+ {
+ get
+ {
+ return this._RectificationRate;
+ }
+ set
+ {
+ if ((this._RectificationRate != value))
+ {
+ this.OnRectificationRateChanging(value);
+ this.SendPropertyChanging();
+ this._RectificationRate = value;
+ this.SendPropertyChanged("RectificationRate");
+ this.OnRectificationRateChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MonthsBackCount", DbType="Int")]
+ public System.Nullable MonthsBackCount
+ {
+ get
+ {
+ return this._MonthsBackCount;
+ }
+ set
+ {
+ if ((this._MonthsBackCount != value))
+ {
+ this.OnMonthsBackCountChanging(value);
+ this.SendPropertyChanging();
+ this._MonthsBackCount = value;
+ this.SendPropertyChanged("MonthsBackCount");
+ this.OnMonthsBackCountChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TotalNoBackCount", DbType="Int")]
+ public System.Nullable TotalNoBackCount
+ {
+ get
+ {
+ return this._TotalNoBackCount;
+ }
+ set
+ {
+ if ((this._TotalNoBackCount != value))
+ {
+ this.OnTotalNoBackCountChanging(value);
+ this.SendPropertyChanging();
+ this._TotalNoBackCount = value;
+ this.SendPropertyChanged("TotalNoBackCount");
+ this.OnTotalNoBackCountChanged();
+ }
+ }
+ }
+
+ [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remarks", DbType="NVarChar(500)")]
+ public string Remarks
+ {
+ get
+ {
+ return this._Remarks;
+ }
+ set
+ {
+ if ((this._Remarks != value))
+ {
+ this.OnRemarksChanging(value);
+ this.SendPropertyChanging();
+ this._Remarks = value;
+ this.SendPropertyChanged("Remarks");
+ this.OnRemarksChanged();
}
}
}
@@ -307083,8 +307262,6 @@ namespace Model
private string _NextQualityControlContent;
- private EntityRef _Report_WeekAndMonthReport;
-
#region 可扩展性方法定义
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -307099,7 +307276,6 @@ namespace Model
public Report_NextQualityControl()
{
- this._Report_WeekAndMonthReport = default(EntityRef);
OnCreated();
}
@@ -307134,10 +307310,6 @@ namespace Model
{
if ((this._ReportId != value))
{
- if (this._Report_WeekAndMonthReport.HasLoadedOrAssignedValue)
- {
- throw new System.Data.Linq.ForeignKeyReferenceAlreadyHasValueException();
- }
this.OnReportIdChanging(value);
this.SendPropertyChanging();
this._ReportId = value;
@@ -307167,40 +307339,6 @@ namespace Model
}
}
- [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Report_NextQualityControl_Report_WeekAndMonthReport", Storage="_Report_WeekAndMonthReport", ThisKey="ReportId", OtherKey="ReportId", IsForeignKey=true)]
- public Report_WeekAndMonthReport Report_WeekAndMonthReport
- {
- get
- {
- return this._Report_WeekAndMonthReport.Entity;
- }
- set
- {
- Report_WeekAndMonthReport previousValue = this._Report_WeekAndMonthReport.Entity;
- if (((previousValue != value)
- || (this._Report_WeekAndMonthReport.HasLoadedOrAssignedValue == false)))
- {
- this.SendPropertyChanging();
- if ((previousValue != null))
- {
- this._Report_WeekAndMonthReport.Entity = null;
- previousValue.Report_NextQualityControl.Remove(this);
- }
- this._Report_WeekAndMonthReport.Entity = value;
- if ((value != null))
- {
- value.Report_NextQualityControl.Add(this);
- this._ReportId = value.ReportId;
- }
- else
- {
- this._ReportId = default(string);
- }
- this.SendPropertyChanged("Report_WeekAndMonthReport");
- }
- }
- }
-
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
@@ -307376,8 +307514,6 @@ namespace Model
private string _Remark;
- private EntityRef _Report_WeekAndMonthReport;
-
#region 可扩展性方法定义
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -307400,7 +307536,6 @@ namespace Model
public Report_RowMaterialProblem()
{
- this._Report_WeekAndMonthReport = default(EntityRef);
OnCreated();
}
@@ -307435,10 +307570,6 @@ namespace Model
{
if ((this._ReportId != value))
{
- if (this._Report_WeekAndMonthReport.HasLoadedOrAssignedValue)
- {
- throw new System.Data.Linq.ForeignKeyReferenceAlreadyHasValueException();
- }
this.OnReportIdChanging(value);
this.SendPropertyChanging();
this._ReportId = value;
@@ -307548,40 +307679,6 @@ namespace Model
}
}
- [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Report_RowMaterialProblem_Report_WeekAndMonthReport", Storage="_Report_WeekAndMonthReport", ThisKey="ReportId", OtherKey="ReportId", IsForeignKey=true)]
- public Report_WeekAndMonthReport Report_WeekAndMonthReport
- {
- get
- {
- return this._Report_WeekAndMonthReport.Entity;
- }
- set
- {
- Report_WeekAndMonthReport previousValue = this._Report_WeekAndMonthReport.Entity;
- if (((previousValue != value)
- || (this._Report_WeekAndMonthReport.HasLoadedOrAssignedValue == false)))
- {
- this.SendPropertyChanging();
- if ((previousValue != null))
- {
- this._Report_WeekAndMonthReport.Entity = null;
- previousValue.Report_RowMaterialProblem.Remove(this);
- }
- this._Report_WeekAndMonthReport.Entity = value;
- if ((value != null))
- {
- value.Report_RowMaterialProblem.Add(this);
- this._ReportId = value.ReportId;
- }
- else
- {
- this._ReportId = default(string);
- }
- this.SendPropertyChanged("Report_WeekAndMonthReport");
- }
- }
- }
-
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
@@ -307908,12 +308005,6 @@ namespace Model
private EntitySet _Report_Comprehensive;
- private EntitySet _Report_ConstructionProblems;
-
- private EntitySet _Report_NextQualityControl;
-
- private EntitySet _Report_RowMaterialProblem;
-
private EntitySet _Report_ThisWeekOrMonthContent;
private EntityRef _Base_Project;
@@ -307939,9 +308030,6 @@ namespace Model
public Report_WeekAndMonthReport()
{
this._Report_Comprehensive = new EntitySet(new Action(this.attach_Report_Comprehensive), new Action(this.detach_Report_Comprehensive));
- this._Report_ConstructionProblems = new EntitySet(new Action(this.attach_Report_ConstructionProblems), new Action(this.detach_Report_ConstructionProblems));
- this._Report_NextQualityControl = new EntitySet(new Action(this.attach_Report_NextQualityControl), new Action(this.detach_Report_NextQualityControl));
- this._Report_RowMaterialProblem = new EntitySet(new Action(this.attach_Report_RowMaterialProblem), new Action(this.detach_Report_RowMaterialProblem));
this._Report_ThisWeekOrMonthContent = new EntitySet(new Action(this.attach_Report_ThisWeekOrMonthContent), new Action(this.detach_Report_ThisWeekOrMonthContent));
this._Base_Project = default(EntityRef);
OnCreated();
@@ -308084,45 +308172,6 @@ namespace Model
}
}
- [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Report_ConstructionProblems_Report_WeekAndMonthReport", Storage="_Report_ConstructionProblems", ThisKey="ReportId", OtherKey="ReportId", DeleteRule="NO ACTION")]
- public EntitySet Report_ConstructionProblems
- {
- get
- {
- return this._Report_ConstructionProblems;
- }
- set
- {
- this._Report_ConstructionProblems.Assign(value);
- }
- }
-
- [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Report_NextQualityControl_Report_WeekAndMonthReport", Storage="_Report_NextQualityControl", ThisKey="ReportId", OtherKey="ReportId", DeleteRule="NO ACTION")]
- public EntitySet Report_NextQualityControl
- {
- get
- {
- return this._Report_NextQualityControl;
- }
- set
- {
- this._Report_NextQualityControl.Assign(value);
- }
- }
-
- [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Report_RowMaterialProblem_Report_WeekAndMonthReport", Storage="_Report_RowMaterialProblem", ThisKey="ReportId", OtherKey="ReportId", DeleteRule="NO ACTION")]
- public EntitySet Report_RowMaterialProblem
- {
- get
- {
- return this._Report_RowMaterialProblem;
- }
- set
- {
- this._Report_RowMaterialProblem.Assign(value);
- }
- }
-
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Report_ThisWeekOrMonthContent_Report_WeekAndMonthReport", Storage="_Report_ThisWeekOrMonthContent", ThisKey="ReportId", OtherKey="ReportId", DeleteRule="NO ACTION")]
public EntitySet Report_ThisWeekOrMonthContent
{
@@ -308202,42 +308251,6 @@ namespace Model
entity.Report_WeekAndMonthReport = null;
}
- private void attach_Report_ConstructionProblems(Report_ConstructionProblems entity)
- {
- this.SendPropertyChanging();
- entity.Report_WeekAndMonthReport = this;
- }
-
- private void detach_Report_ConstructionProblems(Report_ConstructionProblems entity)
- {
- this.SendPropertyChanging();
- entity.Report_WeekAndMonthReport = null;
- }
-
- private void attach_Report_NextQualityControl(Report_NextQualityControl entity)
- {
- this.SendPropertyChanging();
- entity.Report_WeekAndMonthReport = this;
- }
-
- private void detach_Report_NextQualityControl(Report_NextQualityControl entity)
- {
- this.SendPropertyChanging();
- entity.Report_WeekAndMonthReport = null;
- }
-
- private void attach_Report_RowMaterialProblem(Report_RowMaterialProblem entity)
- {
- this.SendPropertyChanging();
- entity.Report_WeekAndMonthReport = this;
- }
-
- private void detach_Report_RowMaterialProblem(Report_RowMaterialProblem entity)
- {
- this.SendPropertyChanging();
- entity.Report_WeekAndMonthReport = null;
- }
-
private void attach_Report_ThisWeekOrMonthContent(Report_ThisWeekOrMonthContent entity)
{
this.SendPropertyChanging();