项目从Visual Studio 2013 升级到 2015 后出现错误解决方案
升级到VS2015后,Clear, 从新编译后,出现错误
Description: An exception occurred while processing your request. Additionally, another exception occurred while executing the custom error page for the first exception. The request has been terminated.
解决方案:
1. 修改 Web.config
<customErrors mode="Off" >
编译运行,出现错误
Error: Attempt by security transparent method 'WebMatrix.WebData.PreApplicationStartCode.Start()' to access security critical method 'System.Web.WebPages.Razor.WebPageRazorHost.AddGlobalImport(System.String)' failed.
2. 安装程序包
再编译,出现新错误
Error:Could not load file or a
升级到VS2015后,Clear, 从新编译后,出现错误
Description: An exception occurred while processing your request. Additionally, another exception occurred while executing the custom error page for the first exception. The request has been terminated.
解决方案:
1. 修改 Web.config
<customErrors mode="Off" >
编译运行,出现错误
Error: Attempt by security transparent method 'WebMatrix.WebData.PreApplicationStartCode.Start()' to access security critical method 'System.Web.WebPages.Razor.WebPageRazorHost.AddGlobalImport(System.String)' failed.
2. 安装程序包
View -> Others windows -> Package Manager Console 或者 Tools > NuGet Package Manager > Package Manager Console
PM> Install-Package Microsoft.AspNet.WebHelpers再编译,出现新错误
Error:Could not load file or a

在将项目从Visual Studio 2013升级到2015后,遇到问题。要解决WebMatrix相关错误,需通过Package Manager Console安装Microsoft.AspNet.WebPages.Data和相关依赖。步骤包括打开Package Manager Console,并修改Web.config文件中<customErrors mode="On" >设置。
最低0.47元/天 解锁文章
2650

被折叠的 条评论
为什么被折叠?



