From fc8d0a684d12374cdccd6cf4fa371c80fe32c5ba Mon Sep 17 00:00:00 2001 From: fly-l <1420031550@qq.com> Date: Sun, 9 Oct 2022 15:37:06 +0800 Subject: [PATCH] =?UTF-8?q?20221009=20001=20=E4=BF=AE=E6=94=B9=E7=84=8A?= =?UTF-8?q?=E6=8E=A5=E5=88=86=E6=9E=90=E9=A6=96=E9=A1=B5=E6=8A=A5=E9=94=99?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BLL/API/HJGL/APIPackagingManageService.cs | 76 ++- SGGL/FineUIPro.Web/FineUIPro.Web.csproj | 20 +- SGGL/FineUIPro.Web/common/mainMenu_HJGL.aspx | 2 +- .../common/mainMenu_HJGL.aspx.cs | 313 +++------ SGGL/Model/HJGL/PackagingManageItem.cs | 4 +- .../HJGL/PackagingManageController.cs | 37 +- SGGL/WebAPI/ErrLog.txt | 644 +++++++++++++++++- .../PublishProfiles/FolderProfile3.pubxml | 16 + 8 files changed, 894 insertions(+), 218 deletions(-) create mode 100644 SGGL/WebAPI/Properties/PublishProfiles/FolderProfile3.pubxml diff --git a/SGGL/BLL/API/HJGL/APIPackagingManageService.cs b/SGGL/BLL/API/HJGL/APIPackagingManageService.cs index 3de1fbf2..36fdf88c 100644 --- a/SGGL/BLL/API/HJGL/APIPackagingManageService.cs +++ b/SGGL/BLL/API/HJGL/APIPackagingManageService.cs @@ -1,12 +1,86 @@ using System; using System.Collections.Generic; using System.Linq; +using System.Security.Cryptography; using System.Text; using System.Threading.Tasks; +using Model; namespace BLL { - internal class APIPackagingManageService + public class APIPackagingManageService { + public static List GetPackagingManageList(string projectId) + { + using (Model.SGGLDB db = new Model.SGGLDB(Funs.ConnString)) + { + var q = (from x in db.HJGL_PackagingManage + //join y in db.HJGL_Pipeline_Component on x.PipelineComponentId equals y.PipelineComponentId + // join z in db.HJGL_Pipeline on tt.PipelineId equals z.PipelineId + //join m in db.WBS_UnitWork on z.UnitWorkId equals m.UnitId + join n in db.Base_Project on x.ProjectId equals n.ProjectId + where x.ProjectId == projectId + select new PackagingManageDetailItem + { + PackagingManageId = x.PackagingManageId, + PackagingCode = x.PackagingCode, + ProjectName = n.ProjectName, + ContactName = x.ContactName, + ContactPhone = x.ContactPhone, + StackingPosition = x.StackingPosition, + }).Distinct(); + return q.ToList(); + + } + } + + public static Model.PackagingManageItem GetPackagingInformationById(string projectId, string packagingManageId) + { + using (Model.SGGLDB db = new Model.SGGLDB(Funs.ConnString)) + { + PackagingManageItem packagingManageItem = new PackagingManageItem(); + var q = (from x in db.HJGL_PackagingManage + join n in db.Base_Project on x.ProjectId equals n.ProjectId + where x.ProjectId == projectId && x.PackagingManageId == packagingManageId + select new PackagingManageDetailItem + { + PackagingManageId = x.PackagingManageId, + PackagingCode = x.PackagingCode, + ProjectName = n.ProjectName, + ContactName = x.ContactName, + ContactPhone = x.ContactPhone, + StackingPosition = x.StackingPosition, + }).FirstOrDefault(); + var tb_packing = (from x in db.HJGL_PackagingManage where x.PackagingManageId==packagingManageId select x ).FirstOrDefault() ; + var PipelineComponentIdList = tb_packing.PipelineComponentId.Split(','); + var packagingPrepipeItem = (from x in db.HJGL_Pipeline_Component + join y in db.HJGL_Pipeline on x.PipelineId equals y.PipelineId + join z in db.WBS_UnitWork on y.UnitWorkId equals z.UnitWorkId + where PipelineComponentIdList.Contains(x.PipelineComponentId) + select new PackagingPrepipeItem + { + PipelineComponentCode = x.PipelineComponentCode, + PreUnit = "1/个", + UnitWorkName = z.UnitWorkName, + PlanStartDate=y.PlanStartDate + + }).ToList(); + packagingManageItem.packagingManageDetailItem = q; + packagingManageItem.packagingPrepipeItems = packagingPrepipeItem; + return packagingManageItem; + + } + + } + public static void GetPackingInfoConfirmArrival(string packagingManageId) + { + var q= BLL.HJGL_PackagingmanageService.GetHJGL_PackagingManageById(packagingManageId); + if (q!=null) + { + q.State = HJGL_PackagingmanageService.state_2; + HJGL_PackagingmanageService.UpdateHJGL_PackagingManage(q); + } + } + } } diff --git a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj index 4096ea77..b7e55817 100644 --- a/SGGL/FineUIPro.Web/FineUIPro.Web.csproj +++ b/SGGL/FineUIPro.Web/FineUIPro.Web.csproj @@ -73,17 +73,21 @@ False ..\FineUIPro\Reference BLL\AxInterop.SYNCARDOCXLib.dll - - ..\FineUIPro\Reference BLL\FastReport.dll + + False + bin\FastReport.dll - - ..\FineUIPro\Reference BLL\FastReport.Bars.dll + + False + bin\FastReport.Bars.dll - - ..\FineUIPro\Reference BLL\FastReport.Editor.dll + + False + bin\FastReport.Editor.dll - - ..\FineUIPro\Reference BLL\FastReport.Web.dll + + False + bin\FastReport.Web.dll False diff --git a/SGGL/FineUIPro.Web/common/mainMenu_HJGL.aspx b/SGGL/FineUIPro.Web/common/mainMenu_HJGL.aspx index 8f02b9bd..07c0c843 100644 --- a/SGGL/FineUIPro.Web/common/mainMenu_HJGL.aspx +++ b/SGGL/FineUIPro.Web/common/mainMenu_HJGL.aspx @@ -275,7 +275,7 @@ } else if (type == 'gg') { // 单位工程 initEchart05(dataE05_Type02, dataE05_Values02) - } else if (type == 'lb') { + } else if (type == 'lx') { // 材质类别 initEchart05(dataE05_Type03, dataE05_Values03) } diff --git a/SGGL/FineUIPro.Web/common/mainMenu_HJGL.aspx.cs b/SGGL/FineUIPro.Web/common/mainMenu_HJGL.aspx.cs index ac7d95fb..057a8fe1 100644 --- a/SGGL/FineUIPro.Web/common/mainMenu_HJGL.aspx.cs +++ b/SGGL/FineUIPro.Web/common/mainMenu_HJGL.aspx.cs @@ -236,7 +236,15 @@ namespace FineUIPro.Web getecharts05(); getecharts06(); this.divWelderEfficacyNum.InnerText = BLL.HJGL_WeldingReportService.GetWelderEfficacy(this.CurrUser .LoginProjectId).ToString() ; - this.echarts02Value.InnerText = Math.Floor(Math.Round(decimal.Parse((PipeRate1 / (PipeRate1+ PipeRate2)).ToString("0.000")), 2) * 100).ToString(); + if (PipeRate1 + PipeRate2==0) + { + this.echarts02Value.InnerText = "0"; + } + else + { + this.echarts02Value.InnerText = Math.Floor(Math.Round(decimal.Parse((PipeRate1 / (PipeRate1 + PipeRate2)).ToString("0.000")), 2) * 100).ToString(); + + } } @@ -384,104 +392,6 @@ namespace FineUIPro.Web protected string E04_Values05; protected string E04_Type06; protected string E04_Values06; - /// - /// 焊接一次合格率 - /// - //protected void getecharts04() - //{ - // E08_Type01 = "[]"; - // E08_Values01 = "[]"; - - // E08_Type02 = "[]"; - // E08_Values02 = "[]"; - - // E08_Type03 = "[]"; - // E08_Values03 = "[]"; - // double PassRate = 0; - // int current_pass_film = 0; - // int cht_totalfilm = 0; - // //// 按单位 - // List type01List = new List(); - // List count011List = new List(); - // foreach (var itemUnit in getProjectUnitList) - // { - // string unitName = UnitService.GetUnitNameByUnitId(itemUnit.UnitId); - // type01List.Add(unitName); - // var getUJots = from x in getCH_CheckItemList - // where x.UnitId == itemUnit.UnitId - // select x; - // PassRate = 0; - // current_pass_film = getUJots.Sum(x => x.CHT_PassFilm) ?? 0; - // cht_totalfilm = getUJots.Sum(x => x.CHT_TotalFilm) ?? 0; - // if (cht_totalfilm > 0) - // { - // PassRate = Math.Round((100 * current_pass_film * 1.0) / cht_totalfilm, 1); - // } - // count011List.Add(PassRate); - // } - // if (type01List.Count() > 0) - // { - // E08_Type01 = JsonConvert.SerializeObject(type01List); - // E08_Values01 = JsonConvert.SerializeObject(count011List); - // } - // ///按单位工程 - // List type02List = new List(); - // List count021List = new List(); - // var getWorkAreas = from x in Funs.DB.WBS_UnitWork - // where x.ProjectId == this.ProjectId - // select x; - // foreach (var itemWorkArea in getWorkAreas) - // { - // type02List.Add(itemWorkArea.UnitWorkName); - // var getWJots = from x in getCH_CheckItemList - // where x.WorkAreaId == itemWorkArea.UnitWorkId - // select x; - - // PassRate = 0; - // current_pass_film = getWJots.Sum(x => x.CHT_PassFilm) ?? 0; - // cht_totalfilm = getWJots.Sum(x => x.CHT_TotalFilm) ?? 0; - // if (cht_totalfilm > 0) - // { - // PassRate = Math.Round((100 * current_pass_film * 1.0) / cht_totalfilm, 1); - // } - // count021List.Add(PassRate); - // } - // if (type02List.Count() > 0) - // { - // E08_Type02 = JsonConvert.SerializeObject(type02List); - // E08_Values02 = JsonConvert.SerializeObject(count021List); - // } - - // ///按材质类别 - // List type03List = new List(); - // List count031List = new List(); - // var getMaterials = from x in Funs.DB.Base_Material - // join y in Funs.DB.HJGL_Pipeline on x.MaterialId equals y.MaterialId - // where y.ProjectId == this.ProjectId - // select x; - // foreach (var itemMaterial in getMaterials) - // { - // string code = itemMaterial.MaterialCode; - // type03List.Add(code); - // var getMJots = from x in getCH_CheckItemList - // where x.MaterialId == itemMaterial.MaterialId - // select x; - - // PassRate = 0; - // current_pass_film = getMJots.Sum(x => x.CHT_PassFilm) ?? 0; - // cht_totalfilm = getMJots.Sum(x => x.CHT_TotalFilm) ?? 0; - // if (cht_totalfilm > 0) - // { - // PassRate = Math.Round((100 * current_pass_film * 1.0) / cht_totalfilm, 1); - // } - // count031List.Add(PassRate); - // } - // if (type03List.Count() > 0) - // { - // E08_Type03 = JsonConvert.SerializeObject(type03List); - // E08_Values03 = JsonConvert.SerializeObject(count031List); - // } - //} protected void getecharts04() { E04_Type01 = "[]"; @@ -668,109 +578,6 @@ namespace FineUIPro.Web protected string E05_Values03; protected string E05_Type04; protected string E05_Values04; - - - /// - /// 焊接进度分析 - /// - //protected void getecharts05() - //{ - // E05_Type01 = "[]"; - // E05_Values01_1 = "[]"; - // E05_Values01_2 = "[]"; - // E05_Type02 = "[]"; - // E05_Values02_1 = "[]"; - // E05_Values02_2 = "[]"; - - // E05_Type03 = "[]"; - // E05_Values03_1 = "[]"; - // E05_Values03_2 = "[]"; - - // //// 按单位 - // List type01List = new List(); - // List count011List = new List(); - // List count012List = new List(); - // foreach (var itemUnit in getProjectUnitList) - // { - // string unitName = UnitService.GetUnitNameByUnitId(itemUnit.UnitId); - // type01List.Add(unitName); - // var getUJots = from x in getAllJotList - // join y in getAllJIsoInfoList on x.PipelineId equals y.PipelineId - // where y.UnitId == itemUnit.UnitId - // select x; - // count011List.Add(getUJots.Count()); - // var getUCJots = from x in getFinishedJotList - // join y in getAllJIsoInfoList on x.PipelineId equals y.PipelineId - // where y.UnitId == itemUnit.UnitId - // select x; - // count012List.Add(getUCJots.Count()); - // } - // if (type01List.Count() > 0) - // { - // E05_Type01 = JsonConvert.SerializeObject(type01List); - // E05_Values01_1 = JsonConvert.SerializeObject(count011List); - // E05_Values01_2 = JsonConvert.SerializeObject(count012List); - // } - // ///按单位工程 - // List type02List = new List(); - // List count021List = new List(); - // List count022List = new List(); - // var getWorkAreas = from x in Funs.DB.WBS_UnitWork - // where x.ProjectId == this.ProjectId - // select x; - // foreach (var itemWorkArea in getWorkAreas) - // { - // type02List.Add(itemWorkArea.UnitWorkName); - // var getWJots = from x in getAllJotList - // join y in getAllJIsoInfoList on x.PipelineId equals y.PipelineId - // where y.UnitWorkId == itemWorkArea.UnitWorkId - // select x; - // count021List.Add(getWJots.Count()); - // var getWCJots = from x in getFinishedJotList - // join y in getAllJIsoInfoList on x.PipelineId equals y.PipelineId - // where y.UnitWorkId == itemWorkArea.UnitWorkId - // select x; - // count022List.Add(getWCJots.Count()); - // } - // if (type02List.Count() > 0) - // { - // E05_Type02 = JsonConvert.SerializeObject(type02List); - // E05_Values02_1 = JsonConvert.SerializeObject(count021List); - // E05_Values02_2 = JsonConvert.SerializeObject(count022List); - // } - - // ///按材质类别 - // List type03List = new List(); - // List count031List = new List(); - // List count032List = new List(); - // var getMaterials = (from x in Funs.DB.Base_Material - // join y in Funs.DB.HJGL_Pipeline on x.MaterialId equals y.MaterialId - // where y.ProjectId == this.ProjectId - // select x).ToList().Distinct(); - // foreach (var itemMaterial in getMaterials) - // { - // string code = itemMaterial.MaterialCode; - // type03List.Add(code); - // var getWJots = from x in getAllJotList - // join y in getAllJIsoInfoList on x.PipelineId equals y.PipelineId - // where y.MaterialId == itemMaterial.MaterialId - // select x; - // count031List.Add(getWJots.Count()); - // var getWCJots = from x in getFinishedJotList - // join y in getAllJIsoInfoList on x.PipelineId equals y.PipelineId - // where y.MaterialId == itemMaterial.MaterialId - // select x; - // count032List.Add(getWCJots.Count()); - // } - // if (type03List.Count() > 0) - // { - // E05_Type03 = JsonConvert.SerializeObject(type03List); - // E05_Values03_1 = JsonConvert.SerializeObject(count031List); - // E05_Values03_2 = JsonConvert.SerializeObject(count032List); - // } - //} - - protected void getecharts05() { E05_Type01="[]"; @@ -981,5 +788,107 @@ namespace FineUIPro.Web } #endregion + + #region 进度分析 + /// + /// 焊接进度分析 + /// + //protected void getecharts05() + //{ + // E05_Type01 = "[]"; + // E05_Values01_1 = "[]"; + // E05_Values01_2 = "[]"; + // E05_Type02 = "[]"; + // E05_Values02_1 = "[]"; + // E05_Values02_2 = "[]"; + + // E05_Type03 = "[]"; + // E05_Values03_1 = "[]"; + // E05_Values03_2 = "[]"; + + // //// 按单位 + // List type01List = new List(); + // List count011List = new List(); + // List count012List = new List(); + // foreach (var itemUnit in getProjectUnitList) + // { + // string unitName = UnitService.GetUnitNameByUnitId(itemUnit.UnitId); + // type01List.Add(unitName); + // var getUJots = from x in getAllJotList + // join y in getAllJIsoInfoList on x.PipelineId equals y.PipelineId + // where y.UnitId == itemUnit.UnitId + // select x; + // count011List.Add(getUJots.Count()); + // var getUCJots = from x in getFinishedJotList + // join y in getAllJIsoInfoList on x.PipelineId equals y.PipelineId + // where y.UnitId == itemUnit.UnitId + // select x; + // count012List.Add(getUCJots.Count()); + // } + // if (type01List.Count() > 0) + // { + // E05_Type01 = JsonConvert.SerializeObject(type01List); + // E05_Values01_1 = JsonConvert.SerializeObject(count011List); + // E05_Values01_2 = JsonConvert.SerializeObject(count012List); + // } + // ///按单位工程 + // List type02List = new List(); + // List count021List = new List(); + // List count022List = new List(); + // var getWorkAreas = from x in Funs.DB.WBS_UnitWork + // where x.ProjectId == this.ProjectId + // select x; + // foreach (var itemWorkArea in getWorkAreas) + // { + // type02List.Add(itemWorkArea.UnitWorkName); + // var getWJots = from x in getAllJotList + // join y in getAllJIsoInfoList on x.PipelineId equals y.PipelineId + // where y.UnitWorkId == itemWorkArea.UnitWorkId + // select x; + // count021List.Add(getWJots.Count()); + // var getWCJots = from x in getFinishedJotList + // join y in getAllJIsoInfoList on x.PipelineId equals y.PipelineId + // where y.UnitWorkId == itemWorkArea.UnitWorkId + // select x; + // count022List.Add(getWCJots.Count()); + // } + // if (type02List.Count() > 0) + // { + // E05_Type02 = JsonConvert.SerializeObject(type02List); + // E05_Values02_1 = JsonConvert.SerializeObject(count021List); + // E05_Values02_2 = JsonConvert.SerializeObject(count022List); + // } + + // ///按材质类别 + // List type03List = new List(); + // List count031List = new List(); + // List count032List = new List(); + // var getMaterials = (from x in Funs.DB.Base_Material + // join y in Funs.DB.HJGL_Pipeline on x.MaterialId equals y.MaterialId + // where y.ProjectId == this.ProjectId + // select x).ToList().Distinct(); + // foreach (var itemMaterial in getMaterials) + // { + // string code = itemMaterial.MaterialCode; + // type03List.Add(code); + // var getWJots = from x in getAllJotList + // join y in getAllJIsoInfoList on x.PipelineId equals y.PipelineId + // where y.MaterialId == itemMaterial.MaterialId + // select x; + // count031List.Add(getWJots.Count()); + // var getWCJots = from x in getFinishedJotList + // join y in getAllJIsoInfoList on x.PipelineId equals y.PipelineId + // where y.MaterialId == itemMaterial.MaterialId + // select x; + // count032List.Add(getWCJots.Count()); + // } + // if (type03List.Count() > 0) + // { + // E05_Type03 = JsonConvert.SerializeObject(type03List); + // E05_Values03_1 = JsonConvert.SerializeObject(count031List); + // E05_Values03_2 = JsonConvert.SerializeObject(count032List); + // } + //} + #endregion } } \ No newline at end of file diff --git a/SGGL/Model/HJGL/PackagingManageItem.cs b/SGGL/Model/HJGL/PackagingManageItem.cs index 62196bb3..9053d68d 100644 --- a/SGGL/Model/HJGL/PackagingManageItem.cs +++ b/SGGL/Model/HJGL/PackagingManageItem.cs @@ -14,14 +14,14 @@ namespace Model public string ContactName { get; set; } public string ContactPhone { get; set; } public string StackingPosition { get; set; } - public string PlanStartDate { get; set; } - public string UnitWorkName { get; set; } + } public class PackagingPrepipeItem { public string PipelineComponentCode { get; set; } public string PreUnit { get; set; } public string UnitWorkName { get; set; } + public DateTime? PlanStartDate { get; set; } } public class PackagingManageItem diff --git a/SGGL/WebAPI/Controllers/HJGL/PackagingManageController.cs b/SGGL/WebAPI/Controllers/HJGL/PackagingManageController.cs index 7b0b9c68..e6b714d4 100644 --- a/SGGL/WebAPI/Controllers/HJGL/PackagingManageController.cs +++ b/SGGL/WebAPI/Controllers/HJGL/PackagingManageController.cs @@ -6,19 +6,50 @@ using System.Net; using System.Net.Http; using System.Web.Http; -namespace WebAPI.Controllers.HJGL +namespace WebAPI.Controllers { /// /// /// public class PackagingManageController : ApiController { - public Model.ResponeData getPackagingManagebyId(string PackagingManageId) + public Model.ResponeData GetPackagingInformationList(string projectid) { var responeData = new Model.ResponeData(); try { - //responeData.data = from x in Funs.DB; + responeData.data = BLL.APIPackagingManageService.GetPackagingManageList(projectid); + } + catch (Exception ex) + { + responeData.code = 0; + responeData.message = ex.Message; + } + + return responeData; + } + + public Model.ResponeData GetPackagingInformationById(string projectId, string packagingManageId) + { + var responeData = new Model.ResponeData(); + try + { + responeData.data = BLL.APIPackagingManageService.GetPackagingInformationById(projectId, packagingManageId); + } + catch (Exception ex) + { + responeData.code = 0; + responeData.message = ex.Message; + } + + return responeData; + } + public Model.ResponeData GetPackingInfoConfirmArrival( string packagingManageId) + { + var responeData = new Model.ResponeData(); + try + { + BLL.APIPackagingManageService.GetPackingInfoConfirmArrival( packagingManageId); } catch (Exception ex) { diff --git a/SGGL/WebAPI/ErrLog.txt b/SGGL/WebAPI/ErrLog.txt index 5f282702..079db3b7 100644 --- a/SGGL/WebAPI/ErrLog.txt +++ b/SGGL/WebAPI/ErrLog.txt @@ -1 +1,643 @@ - \ No newline at end of file + +错误信息开始=====> +错误类型:InvalidOperationException +错误信息:“~/Views/Home/Index.cshtml”处的视图必须派生自 WebViewPage 或 WebViewPage。 +错误堆栈: + 在 System.Web.Mvc.RazorView.RenderView(ViewContext viewContext, TextWriter writer, Object instance) + 在 System.Web.Mvc.ViewResultBase.ExecuteResult(ControllerContext context) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList`1 filters, ActionResult actionResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass3_1.b__5(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.<>c.b__152_1(IAsyncResult asyncResult, ExecuteCoreState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecute(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.<>c.b__20_1(IAsyncResult asyncResult, ProcessRequestState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult) + 在 System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +出错时间:10/09/2022 11:46:09 +出错文件:http://localhost:7040/ +IP地址:::1 + +出错时间:10/09/2022 11:46:09 + + +错误信息开始=====> +错误类型:HttpCompileException +错误信息:D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\WebAPI\Areas\HelpPage\Views\Help\Index.cshtml(6): error CS0118: 'model' is a namespace but is used like a variable +错误堆栈: + 在 System.Web.Compilation.AssemblyBuilder.Compile() + 在 System.Web.Compilation.BuildProvidersCompiler.PerformBuild() + 在 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.GetCompiledType(VirtualPath virtualPath) + 在 System.Web.Mvc.BuildManagerCompiledView.Render(ViewContext viewContext, TextWriter writer) + 在 System.Web.Mvc.ViewResultBase.ExecuteResult(ControllerContext context) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList`1 filters, ActionResult actionResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass3_1.b__5(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.<>c.b__152_1(IAsyncResult asyncResult, ExecuteCoreState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecute(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.<>c.b__20_1(IAsyncResult asyncResult, ProcessRequestState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult) + 在 System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +出错时间:10/09/2022 11:46:38 +出错文件:http://localhost:7040/Help +IP地址:::1 + +出错时间:10/09/2022 11:46:38 + + +错误信息开始=====> +错误类型:HttpCompileException +错误信息:D:\诺必达\赛鼎\SGGL_SeDin_new\SGGL\WebAPI\Areas\HelpPage\Views\Help\Index.cshtml(6): error CS0118: 'model' is a namespace but is used like a variable +错误堆栈: + 在 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.GetCompiledType(VirtualPath virtualPath) + 在 System.Web.Mvc.BuildManagerCompiledView.Render(ViewContext viewContext, TextWriter writer) + 在 System.Web.Mvc.ViewResultBase.ExecuteResult(ControllerContext context) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList`1 filters, ActionResult actionResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass3_1.b__5(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.<>c.b__152_1(IAsyncResult asyncResult, ExecuteCoreState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecute(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.<>c.b__20_1(IAsyncResult asyncResult, ProcessRequestState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult) + 在 System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +出错时间:10/09/2022 11:46:42 +出错文件:http://localhost:7040/Help +IP地址:::1 + +出错时间:10/09/2022 11:46:42 + + +错误信息开始=====> +错误类型:InvalidOperationException +错误信息:“~/Views/Home/Index.cshtml”处的视图必须派生自 WebViewPage 或 WebViewPage。 +错误堆栈: + 在 System.Web.Mvc.RazorView.RenderView(ViewContext viewContext, TextWriter writer, Object instance) + 在 System.Web.Mvc.ViewResultBase.ExecuteResult(ControllerContext context) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList`1 filters, ActionResult actionResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass3_1.b__5(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.<>c.b__152_1(IAsyncResult asyncResult, ExecuteCoreState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecute(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.<>c.b__20_1(IAsyncResult asyncResult, ProcessRequestState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult) + 在 System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +出错时间:10/09/2022 11:47:47 +出错文件:http://localhost:7040/ +IP地址:::1 + +出错时间:10/09/2022 11:47:47 + + +错误信息开始=====> +错误类型:InvalidOperationException +错误信息:“~/Views/Home/Index.cshtml”处的视图必须派生自 WebViewPage 或 WebViewPage。 +错误堆栈: + 在 System.Web.Mvc.RazorView.RenderView(ViewContext viewContext, TextWriter writer, Object instance) + 在 System.Web.Mvc.ViewResultBase.ExecuteResult(ControllerContext context) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList`1 filters, ActionResult actionResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass3_1.b__5(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.<>c.b__152_1(IAsyncResult asyncResult, ExecuteCoreState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecute(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.<>c.b__20_1(IAsyncResult asyncResult, ProcessRequestState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult) + 在 System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +出错时间:10/09/2022 12:05:52 +出错文件:http://localhost:7040/ +IP地址:::1 + +出错时间:10/09/2022 12:05:52 + + +错误信息开始=====> +错误类型:InvalidOperationException +错误信息:“~/Views/Home/Index.cshtml”处的视图必须派生自 WebViewPage 或 WebViewPage。 +错误堆栈: + 在 System.Web.Mvc.RazorView.RenderView(ViewContext viewContext, TextWriter writer, Object instance) + 在 System.Web.Mvc.ViewResultBase.ExecuteResult(ControllerContext context) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList`1 filters, ActionResult actionResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass3_1.b__5(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.<>c.b__152_1(IAsyncResult asyncResult, ExecuteCoreState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecute(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.<>c.b__20_1(IAsyncResult asyncResult, ProcessRequestState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult) + 在 System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +出错时间:10/09/2022 12:07:50 +出错文件:http://localhost:7040/ +IP地址:::1 + +出错时间:10/09/2022 12:07:50 + + +错误信息开始=====> +错误类型:HttpException +错误信息:未找到路径“/apiPackagingManage/GetPackagingInformationById”的控制器或该控制器未实现 IController。 +错误堆栈: + 在 System.Web.Mvc.DefaultControllerFactory.GetControllerInstance(RequestContext requestContext, Type controllerType) + 在 System.Web.Mvc.MvcHandler.ProcessRequestInit(HttpContextBase httpContext, IController& controller, IControllerFactory& factory) + 在 System.Web.Mvc.MvcHandler.BeginProcessRequest(HttpContextBase httpContext, AsyncCallback callback, Object state) + 在 System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +出错时间:10/09/2022 14:05:10 +出错文件:http://localhost:7040/apiPackagingManage/GetPackagingInformationById?projectId=0040f558-0a0a-4e52-a688-64a0c2e7a0d4&packagingManageId=3b76c890-2a51-499c-97c6-a73fbc0215f4 +IP地址:::1 + +出错时间:10/09/2022 14:05:10 + + +错误信息开始=====> +错误类型:HttpException +错误信息:未找到路径“/apiPackagingManage/GetPackagingInformationById”的控制器或该控制器未实现 IController。 +错误堆栈: + 在 System.Web.Mvc.DefaultControllerFactory.GetControllerInstance(RequestContext requestContext, Type controllerType) + 在 System.Web.Mvc.MvcHandler.ProcessRequestInit(HttpContextBase httpContext, IController& controller, IControllerFactory& factory) + 在 System.Web.Mvc.MvcHandler.BeginProcessRequest(HttpContextBase httpContext, AsyncCallback callback, Object state) + 在 System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +出错时间:10/09/2022 14:05:24 +出错文件:http://localhost:7040/apiPackagingManage/GetPackagingInformationById?projectId=0040f558-0a0a-4e52-a688-64a0c2e7a0d4&packagingManageId=3b76c890-2a51-499c-97c6-a73fbc0215f4 +IP地址:::1 + +出错时间:10/09/2022 14:05:24 + + +错误信息开始=====> +错误类型:HttpException +错误信息:未找到路径“/apiPackagingManage/GetPackagingInformationById”的控制器或该控制器未实现 IController。 +错误堆栈: + 在 System.Web.Mvc.DefaultControllerFactory.GetControllerInstance(RequestContext requestContext, Type controllerType) + 在 System.Web.Mvc.MvcHandler.ProcessRequestInit(HttpContextBase httpContext, IController& controller, IControllerFactory& factory) + 在 System.Web.Mvc.MvcHandler.BeginProcessRequest(HttpContextBase httpContext, AsyncCallback callback, Object state) + 在 System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +出错时间:10/09/2022 14:05:55 +出错文件:http://localhost:7040/apiPackagingManage/GetPackagingInformationById?projectId=0040f558-0a0a-4e52-a688-64a0c2e7a0d4&packagingManageId=3b76c890-2a51-499c-97c6-a73fbc0215f4 +IP地址:::1 + +出错时间:10/09/2022 14:05:55 + + +错误信息开始=====> +错误类型:HttpException +错误信息:未找到路径“/apiPackagingManage/GetPackagingInformationById”的控制器或该控制器未实现 IController。 +错误堆栈: + 在 System.Web.Mvc.DefaultControllerFactory.GetControllerInstance(RequestContext requestContext, Type controllerType) + 在 System.Web.Mvc.MvcHandler.ProcessRequestInit(HttpContextBase httpContext, IController& controller, IControllerFactory& factory) + 在 System.Web.Mvc.MvcHandler.BeginProcessRequest(HttpContextBase httpContext, AsyncCallback callback, Object state) + 在 System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +出错时间:10/09/2022 14:06:07 +出错文件:http://localhost:7040/apiPackagingManage/GetPackagingInformationById?projectId=0040f558-0a0a-4e52-a688-64a0c2e7a0d4&packagingManageId=3b76c890-2a51-499c-97c6-a73fbc0215f4 +IP地址:::1 + +出错时间:10/09/2022 14:06:07 + + +错误信息开始=====> +错误类型:HttpException +错误信息:未找到路径“/apiPackagingManage/GetPackagingInformationById”的控制器或该控制器未实现 IController。 +错误堆栈: + 在 System.Web.Mvc.DefaultControllerFactory.GetControllerInstance(RequestContext requestContext, Type controllerType) + 在 System.Web.Mvc.MvcHandler.ProcessRequestInit(HttpContextBase httpContext, IController& controller, IControllerFactory& factory) + 在 System.Web.Mvc.MvcHandler.BeginProcessRequest(HttpContextBase httpContext, AsyncCallback callback, Object state) + 在 System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +出错时间:10/09/2022 14:06:14 +出错文件:http://localhost:7040/apiPackagingManage/GetPackagingInformationById?projectId=0040f558-0a0a-4e52-a688-64a0c2e7a0d4&packagingManageId=3b76c890-2a51-499c-97c6-a73fbc0215f4 +IP地址:::1 + +出错时间:10/09/2022 14:06:14 + + +错误信息开始=====> +错误类型:HttpException +错误信息:未找到路径“/apiPackagingManage/GetPackagingInformationById”的控制器或该控制器未实现 IController。 +错误堆栈: + 在 System.Web.Mvc.DefaultControllerFactory.GetControllerInstance(RequestContext requestContext, Type controllerType) + 在 System.Web.Mvc.MvcHandler.ProcessRequestInit(HttpContextBase httpContext, IController& controller, IControllerFactory& factory) + 在 System.Web.Mvc.MvcHandler.BeginProcessRequest(HttpContextBase httpContext, AsyncCallback callback, Object state) + 在 System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +出错时间:10/09/2022 14:06:23 +出错文件:http://localhost:7040/apiPackagingManage/GetPackagingInformationById?projectId=0040f558-0a0a-4e52-a688-64a0c2e7a0d4&packagingManageId=3b76c890-2a51-499c-97c6-a73fbc0215f4 +IP地址:::1 + +出错时间:10/09/2022 14:06:23 + + +错误信息开始=====> +错误类型:HttpException +错误信息:未找到路径“/apiPackagingManage/GetPackagingInformationById”的控制器或该控制器未实现 IController。 +错误堆栈: + 在 System.Web.Mvc.DefaultControllerFactory.GetControllerInstance(RequestContext requestContext, Type controllerType) + 在 System.Web.Mvc.MvcHandler.ProcessRequestInit(HttpContextBase httpContext, IController& controller, IControllerFactory& factory) + 在 System.Web.Mvc.MvcHandler.BeginProcessRequest(HttpContextBase httpContext, AsyncCallback callback, Object state) + 在 System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +出错时间:10/09/2022 14:06:23 +出错文件:http://localhost:7040/apiPackagingManage/GetPackagingInformationById?projectId=0040f558-0a0a-4e52-a688-64a0c2e7a0d4&packagingManageId=3b76c890-2a51-499c-97c6-a73fbc0215f4 +IP地址:::1 + +出错时间:10/09/2022 14:06:23 + + +错误信息开始=====> +错误类型:HttpException +错误信息:未找到路径“/apiPackagingManage/GetPackagingInformationById”的控制器或该控制器未实现 IController。 +错误堆栈: + 在 System.Web.Mvc.DefaultControllerFactory.GetControllerInstance(RequestContext requestContext, Type controllerType) + 在 System.Web.Mvc.MvcHandler.ProcessRequestInit(HttpContextBase httpContext, IController& controller, IControllerFactory& factory) + 在 System.Web.Mvc.MvcHandler.BeginProcessRequest(HttpContextBase httpContext, AsyncCallback callback, Object state) + 在 System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +出错时间:10/09/2022 14:06:24 +出错文件:http://localhost:7040/apiPackagingManage/GetPackagingInformationById?projectId=0040f558-0a0a-4e52-a688-64a0c2e7a0d4&packagingManageId=3b76c890-2a51-499c-97c6-a73fbc0215f4 +IP地址:::1 + +出错时间:10/09/2022 14:06:24 + + +错误信息开始=====> +错误类型:InvalidOperationException +错误信息:“~/Views/Home/Index.cshtml”处的视图必须派生自 WebViewPage 或 WebViewPage。 +错误堆栈: + 在 System.Web.Mvc.RazorView.RenderView(ViewContext viewContext, TextWriter writer, Object instance) + 在 System.Web.Mvc.ViewResultBase.ExecuteResult(ControllerContext context) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList`1 filters, ActionResult actionResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass3_1.b__5(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.<>c.b__152_1(IAsyncResult asyncResult, ExecuteCoreState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecute(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.<>c.b__20_1(IAsyncResult asyncResult, ProcessRequestState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult) + 在 System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +出错时间:10/09/2022 14:10:37 +出错文件:http://localhost:7040/ +IP地址:::1 + +出错时间:10/09/2022 14:10:37 + + +错误信息开始=====> +错误类型:InvalidOperationException +错误信息:“~/Views/Home/Index.cshtml”处的视图必须派生自 WebViewPage 或 WebViewPage。 +错误堆栈: + 在 System.Web.Mvc.RazorView.RenderView(ViewContext viewContext, TextWriter writer, Object instance) + 在 System.Web.Mvc.ViewResultBase.ExecuteResult(ControllerContext context) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList`1 filters, ActionResult actionResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass3_1.b__5(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.<>c.b__152_1(IAsyncResult asyncResult, ExecuteCoreState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecute(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.<>c.b__20_1(IAsyncResult asyncResult, ProcessRequestState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult) + 在 System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +出错时间:10/09/2022 14:23:41 +出错文件:http://localhost:7040/ +IP地址:::1 + +出错时间:10/09/2022 14:23:41 + + +错误信息开始=====> +错误类型:InvalidOperationException +错误信息:“~/Views/Home/Index.cshtml”处的视图必须派生自 WebViewPage 或 WebViewPage。 +错误堆栈: + 在 System.Web.Mvc.RazorView.RenderView(ViewContext viewContext, TextWriter writer, Object instance) + 在 System.Web.Mvc.ViewResultBase.ExecuteResult(ControllerContext context) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList`1 filters, ActionResult actionResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass3_1.b__5(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.<>c.b__152_1(IAsyncResult asyncResult, ExecuteCoreState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecute(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.<>c.b__20_1(IAsyncResult asyncResult, ProcessRequestState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult) + 在 System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +出错时间:10/09/2022 14:31:45 +出错文件:http://localhost:7040/ +IP地址:::1 + +出错时间:10/09/2022 14:31:45 + + +错误信息开始=====> +错误类型:InvalidOperationException +错误信息:“~/Views/Home/Index.cshtml”处的视图必须派生自 WebViewPage 或 WebViewPage。 +错误堆栈: + 在 System.Web.Mvc.RazorView.RenderView(ViewContext viewContext, TextWriter writer, Object instance) + 在 System.Web.Mvc.ViewResultBase.ExecuteResult(ControllerContext context) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList`1 filters, ActionResult actionResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass3_1.b__5(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.<>c.b__152_1(IAsyncResult asyncResult, ExecuteCoreState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecute(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.<>c.b__20_1(IAsyncResult asyncResult, ProcessRequestState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult) + 在 System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +出错时间:10/09/2022 14:34:28 +出错文件:http://localhost:7040/ +IP地址:::1 + +出错时间:10/09/2022 14:34:28 + + +错误信息开始=====> +错误类型:InvalidOperationException +错误信息:“~/Views/Home/Index.cshtml”处的视图必须派生自 WebViewPage 或 WebViewPage。 +错误堆栈: + 在 System.Web.Mvc.RazorView.RenderView(ViewContext viewContext, TextWriter writer, Object instance) + 在 System.Web.Mvc.ViewResultBase.ExecuteResult(ControllerContext context) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList`1 filters, ActionResult actionResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass3_1.b__5(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.<>c.b__152_1(IAsyncResult asyncResult, ExecuteCoreState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecute(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.<>c.b__20_1(IAsyncResult asyncResult, ProcessRequestState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult) + 在 System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +出错时间:10/09/2022 14:38:57 +出错文件:http://localhost:7040/ +IP地址:::1 + +出错时间:10/09/2022 14:38:57 + + +错误信息开始=====> +错误类型:InvalidOperationException +错误信息:“~/Views/Home/Index.cshtml”处的视图必须派生自 WebViewPage 或 WebViewPage。 +错误堆栈: + 在 System.Web.Mvc.RazorView.RenderView(ViewContext viewContext, TextWriter writer, Object instance) + 在 System.Web.Mvc.ViewResultBase.ExecuteResult(ControllerContext context) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList`1 filters, ActionResult actionResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass3_1.b__5(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.<>c.b__152_1(IAsyncResult asyncResult, ExecuteCoreState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecute(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.<>c.b__20_1(IAsyncResult asyncResult, ProcessRequestState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult) + 在 System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +出错时间:10/09/2022 14:40:36 +出错文件:http://localhost:7040/ +IP地址:::1 + +出错时间:10/09/2022 14:40:36 + + +错误信息开始=====> +错误类型:InvalidOperationException +错误信息:“~/Views/Home/Index.cshtml”处的视图必须派生自 WebViewPage 或 WebViewPage。 +错误堆栈: + 在 System.Web.Mvc.RazorView.RenderView(ViewContext viewContext, TextWriter writer, Object instance) + 在 System.Web.Mvc.ViewResultBase.ExecuteResult(ControllerContext context) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList`1 filters, ActionResult actionResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass3_1.b__5(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.<>c.b__152_1(IAsyncResult asyncResult, ExecuteCoreState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecute(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.<>c.b__20_1(IAsyncResult asyncResult, ProcessRequestState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult) + 在 System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +出错时间:10/09/2022 14:40:55 +出错文件:http://localhost:7040/ +IP地址:::1 + +出错时间:10/09/2022 14:40:55 + + +错误信息开始=====> +错误类型:InvalidOperationException +错误信息:“~/Views/Home/Index.cshtml”处的视图必须派生自 WebViewPage 或 WebViewPage。 +错误堆栈: + 在 System.Web.Mvc.RazorView.RenderView(ViewContext viewContext, TextWriter writer, Object instance) + 在 System.Web.Mvc.ViewResultBase.ExecuteResult(ControllerContext context) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList`1 filters, ActionResult actionResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass3_1.b__5(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.<>c.b__152_1(IAsyncResult asyncResult, ExecuteCoreState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecute(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.<>c.b__20_1(IAsyncResult asyncResult, ProcessRequestState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult) + 在 System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +出错时间:10/09/2022 14:44:47 +出错文件:http://localhost:7040/ +IP地址:::1 + +出错时间:10/09/2022 14:44:47 + + +错误信息开始=====> +错误类型:InvalidOperationException +错误信息:“~/Views/Home/Index.cshtml”处的视图必须派生自 WebViewPage 或 WebViewPage。 +错误堆栈: + 在 System.Web.Mvc.RazorView.RenderView(ViewContext viewContext, TextWriter writer, Object instance) + 在 System.Web.Mvc.ViewResultBase.ExecuteResult(ControllerContext context) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList`1 filters, ActionResult actionResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass3_1.b__5(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.<>c.b__152_1(IAsyncResult asyncResult, ExecuteCoreState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecute(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.<>c.b__20_1(IAsyncResult asyncResult, ProcessRequestState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult) + 在 System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +出错时间:10/09/2022 14:47:07 +出错文件:http://localhost:7040/ +IP地址:::1 + +出错时间:10/09/2022 14:47:07 + + +错误信息开始=====> +错误类型:InvalidOperationException +错误信息:“~/Views/Home/Index.cshtml”处的视图必须派生自 WebViewPage 或 WebViewPage。 +错误堆栈: + 在 System.Web.Mvc.RazorView.RenderView(ViewContext viewContext, TextWriter writer, Object instance) + 在 System.Web.Mvc.ViewResultBase.ExecuteResult(ControllerContext context) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList`1 filters, ActionResult actionResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass3_1.b__5(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.<>c.b__152_1(IAsyncResult asyncResult, ExecuteCoreState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecute(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.<>c.b__20_1(IAsyncResult asyncResult, ProcessRequestState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult) + 在 System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +出错时间:10/09/2022 14:47:28 +出错文件:http://localhost:7040/ +IP地址:::1 + +出错时间:10/09/2022 14:47:28 + + +错误信息开始=====> +错误类型:InvalidOperationException +错误信息:“~/Views/Home/Index.cshtml”处的视图必须派生自 WebViewPage 或 WebViewPage。 +错误堆栈: + 在 System.Web.Mvc.RazorView.RenderView(ViewContext viewContext, TextWriter writer, Object instance) + 在 System.Web.Mvc.ViewResultBase.ExecuteResult(ControllerContext context) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) + 在 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList`1 filters, ActionResult actionResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass3_1.b__5(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.<>c.b__152_1(IAsyncResult asyncResult, ExecuteCoreState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.Controller.EndExecute(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.<>c.b__20_1(IAsyncResult asyncResult, ProcessRequestState innerState) + 在 System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult) + 在 System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult) + 在 System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() + 在 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) + 在 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +出错时间:10/09/2022 14:52:45 +出错文件:http://localhost:7040/ +IP地址:::1 + +出错时间:10/09/2022 14:52:45 + diff --git a/SGGL/WebAPI/Properties/PublishProfiles/FolderProfile3.pubxml b/SGGL/WebAPI/Properties/PublishProfiles/FolderProfile3.pubxml new file mode 100644 index 00000000..cc554435 --- /dev/null +++ b/SGGL/WebAPI/Properties/PublishProfiles/FolderProfile3.pubxml @@ -0,0 +1,16 @@ + + + + + False + False + True + Release + Any CPU + FileSystem + bin\app.publish\ + FileSystem + + \ No newline at end of file