- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我今天遇到了这个奇怪的错误,显然我无法解决它。我已经创建了一个完整的 ASP.NET API,它运行良好,没有问题。现在我想向应用程序添加一些 MVC 页面。 ASP.NET API 会自动为您提供一个 Controller (主 Controller )和默认的 asp.net 页面。
现在,当我尝试打开此页面时,我浏览到 http://localhost:26264/home 。
首先,我在 System.Web.MVC 引用中遇到了错误:Could not load file or assembly 'System.Web.Mvc, Version=5.2.2.0...
我通过转到 nuget 管理器并更新 MVC 解决了这个问题,后者将其更新到版本 5.2。 3.0
如我的 web.config 文件中所述(如下)。
现在我在浏览同一个地址时遇到另一个错误。我收到一个编译错误:
描述:在编译服务此请求所需的资源期间发生错误。请查看以下特定错误详细信息并适当修改您的源代码。
Compiler Error Message: CS0246: The type or namespace name 'WebApplication1' could not be found (are you missing a using directive or an assembly reference?)
Source Error:
Line 26: using System.Web.Optimization;
Line 27: using System.Web.Routing;
Line 28: using WebApplication1;
Line 29:
Line 30:
源文件:c:\Users\%USERNAME%\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\App_Web_index.cshtml.a8d08dba.t8kfgnmp.0.cs 行:28
我遍历了每个 .cs 文件,但没有使用它。
就像我说的,其余的运行正常,但我无法打开任何 MVC 页面,即使创建一个空页面也是如此。
我唯一能想到的是它应该与版本有关,就像我最初使用 MVC 时那样。因为我已经从网站下载了此 API 的模板(用于 API 中正确的外部登录行为)。所以该项目的日期为 13-07-2014。
我的 Web.Config 文件:
<configuration>
<configSections>
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
<section name="entityFramework"
type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
requirePermission="false"/>
</configSections>
<connectionStrings>
<add name="AuthContext"
connectionString="some database"
providerName="System.Data.SqlClient"/>
</connectionStrings>
<appSettings>
<add key="webpages:Version" value="3.0.0.0"/>
<add key="webpages:Enabled" value="false"/>
<add key="ClientValidationEnabled" value="true"/>
<add key="UnobtrusiveJavaScriptEnabled" value="true"/>
</appSettings>
<system.web>
<compilation debug="true" targetFramework="4.5"/>
<httpRuntime targetFramework="4.5"/>
<machineKey validationKey="confidential I guess"
decryptionKey="confidential I guess" validation="SHA1" decryption="AES"/>
</system.web>
<system.webServer>
<handlers>
<remove name="ExtensionlessUrlHandler-Integrated-4.0"/>
<remove name="OPTIONSVerbHandler"/>
<remove name="TRACEVerbHandler"/>
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler"
preCondition="integratedMode,runtimeVersionv4.0"/>
</handlers>
</system.webServer>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Web.Http" publicKeyToken="31bf3856ad364e35" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-5.1.0.0" newVersion="5.1.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Net.Http.Formatting" publicKeyToken="31bf3856ad364e35" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-5.1.0.0" newVersion="5.1.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-3.0.1.0" newVersion="3.0.1.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.Owin.Security" publicKeyToken="31bf3856ad364e35" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-3.0.1.0" newVersion="3.0.1.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856sad364e35" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" newVersion="1.5.2.14234"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35"/>
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35"/>
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35"/>
<bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework"/>
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer"/>
</providers>
</entityFramework>
</configuration>
显示详细的编译器输出:
C:\Program Files (x86)\IIS Express> "C:\Windows\Microsoft.NET\Framework\v4.0.30319\csc.exe" /t:library /utf8output /R:"C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ComponentModel.DataAnnotations\v4.0_4.0.0.0__31bf3856ad364e35\System.ComponentModel.DataAnnotations.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.CSharp\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.CSharp.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll" /R:"C:\Windows\Microsoft.NET\Framework\v4.0.30319\mscorlib.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.WorkflowServices\v4.0_4.0.0.0__31bf3856ad364e35\System.WorkflowServices.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.DataSetExtensions\v4.0_4.0.0.0__b77a5c561934e089\System.Data.DataSetExtensions.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll" /R:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\assembly\dl3\33a25be8\00298484_2fe1cf01\EntityFramework.SqlServer.dll" /R:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\assembly\dl3\e4e456f0\80a7fc09_c7a6d001\System.Web.WebPages.Deployment.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualStudio.Web.PageInspector.Loader\v4.0_1.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.Web.PageInspector.Loader.dll" /R:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\assembly\dl3\5e13637a\0064da67_6c98d001\WebGrease.dll" /R:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\assembly\dl3\556b9ea4\80bf1a60_6c98d001\System.Web.Optimization.dll" /R:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\assembly\dl3\b004c4ba\00298484_2fe1cf01\Microsoft.AspNet.Identity.Core.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll" /R:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\assembly\dl3\d053c54a\00298484_2fe1cf01\Microsoft.AspNet.Identity.EntityFramework.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.DynamicData\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.DynamicData.dll" /R:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\assembly\dl3\c00cea1f\00298484_2fe1cf01\EntityFramework.dll" /R:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\assembly\dl3\8a259b50\80a7fc09_c7a6d001\System.Web.Helpers.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Web.Infrastructure\v4.0_1.0.0.0__31bf3856ad364e35\Microsoft.Web.Infrastructure.dll" /R:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\assembly\dl3\697894d0\80a7fc09_c7a6d001\System.Web.WebPages.Razor.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" /R:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\assembly\dl3\5b891fac\00298484_2fe1cf01\Owin.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll" /R:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\assembly\dl3\20287057\00298484_2fe1cf01\Microsoft.Owin.Host.SystemWeb.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll" /R:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\assembly\dl3\9e3324b2\00298484_2fe1cf01\Microsoft.AspNet.Identity.Owin.dll" /R:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\assembly\dl3\f5e62a40\0037a966_6c98d001\Antlr3.Runtime.dll" /R:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\assembly\dl3\df949ad9\00298484_2fe1cf01\System.Web.Http.Owin.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Web\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Web.dll" /R:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\assembly\dl3\2de213fd\00298484_2fe1cf01\System.Web.Http.dll" /R:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\assembly\dl3\b76d5c10\00298484_2fe1cf01\System.Web.Cors.dll" /R:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\assembly\dl3\e4698f0d\00298484_2fe1cf01\Microsoft.Owin.Security.Cookies.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" /R:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\assembly\dl3\42f17822\00db2a40_2c8ed001\Microsoft.Owin.dll" /R:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\assembly\dl3\492af3ed\80a7fc09_c7a6d001\System.Web.Mvc.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" /R:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\assembly\dl3\56706741\80a7fc09_c7a6d001\System.Web.WebPages.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Extensions\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.Extensions.dll" /R:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\assembly\dl3\d26ced0e\00db2a40_2c8ed001\Microsoft.Owin.Security.dll" /R:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\assembly\dl3\6c6c0552\8071c340_2c8ed001\Microsoft.Owin.Security.Facebook.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.WebPages.Deployment\v4.0_2.0.0.0__31bf3856ad364e35\System.Web.WebPages.Deployment.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll" /R:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\assembly\dl3\bbcc5165\80a7fc09_c7a6d001\System.Web.Razor.dll" /R:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\assembly\dl3\0be6b9ea\00298484_2fe1cf01\Microsoft.Owin.Security.OAuth.dll" /R:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\App_global.asax.wzkby3d1.dll" /R:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\assembly\dl3\18153ac5\00298484_2fe1cf01\System.Net.Http.Formatting.dll" /R:"C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll" /R:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\assembly\dl3\96b61974\00298484_2fe1cf01\Microsoft.Owin.Cors.dll" /R:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\assembly\dl3\995618f0\00db2a40_2c8ed001\Newtonsoft.Json.dll" /R:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\assembly\dl3\1742251e\7fa56e65_d0a6d001\AngularJSAuthentication.API.dll" /R:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\assembly\dl3\06b74cb9\8052b946_2c8ed001\Microsoft.Owin.Security.Google.dll" /R:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\assembly\dl3\c5202dd8\00298484_2fe1cf01\System.Web.Http.WebHost.dll" /out:"C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\App_Web_index.cshtml.6373d792.i9ntk24m.dll" /D:DEBUG /debug+ /optimize- /w:4 /nowarn:1659;1699;1701;612;618 /warnaserror- "C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\App_Web_index.cshtml.6373d792.i9ntk24m.0.cs" "C:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\App_Web_index.cshtml.6373d792.i9ntk24m.1.cs"
Microsoft (R) Visual C# Compiler version 4.0.30319.18408
for Microsoft (R) .NET Framework 4.5
Copyright (C) Microsoft Corporation. All rights reserved.
c:\Users\Ruud\AppData\Local\Temp\Temporary ASP.NET Files\root\46ca8dc5\51ac0d57\App_Web_index.cshtml.6373d792.i9ntk24m.0.cs(28,11): error CS0246: The type or namespace name 'WebApplication1' could not be found (are you missing a using directive or an assembly reference?)
源文件有点长,如果有帮助的话:
#pragma checksum "[pathToProject]\AngularJSAuthentication\AngularJSAuthentication.API\Views\home\Index.cshtml" "{ff1816ec-a...."
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.18444
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace ASP {
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Web;
using System.Web.Helpers;
using System.Web.Security;
using System.Web.UI;
using System.Web.WebPages;
using System.Web.Mvc;
using System.Web.Mvc.Ajax;
using System.Web.Mvc.Html;
using System.Web.Optimization;
using System.Web.Routing;
using WebApplication1;
public class _Page_Views_home_Index_cshtml : System.Web.Mvc.WebViewPage<dynamic> {
#line hidden
public _Page_Views_home_Index_cshtml() {
}
protected ASP.global_asax ApplicationInstance {
get {
return ((ASP.global_asax)(Context.ApplicationInstance));
}
}
public override void Execute() {
BeginContext("~/Views/home/Index.cshtml", 0, 4, true);
WriteLiteral("<div");
EndContext("~/Views/home/Index.cshtml", 0, 4, true);
BeginContext("~/Views/home/Index.cshtml", 4, 18, true);
WriteLiteral(" class=\"jumbotron\"");
EndContext("~/Views/home/Index.cshtml", 4, 18, true);
BeginContext("~/Views/home/Index.cshtml", 22, 31, true);
WriteLiteral(">\r\n <h1>ASP.NET</h1>\r\n <p");
EndContext("~/Views/home/Index.cshtml", 22, 31, true);
BeginContext("~/Views/home/Index.cshtml", 53, 13, true);
WriteLiteral(" class=\"lead\"");
EndContext("~/Views/home/Index.cshtml", 53, 13, true);
BeginContext("~/Views/home/Index.cshtml", 66, 130, true);
WriteLiteral(">ASP.NET is a free web framework for building great Web sites and Web application" +
"s using HTML, CSS, and JavaScript.</p>\r\n <p><a");
EndContext("~/Views/home/Index.cshtml", 66, 130, true);
BeginContext("~/Views/home/Index.cshtml", 196, 22, true);
WriteLiteral(" href=\"http://asp.net\"");
EndContext("~/Views/home/Index.cshtml", 196, 22, true);
BeginContext("~/Views/home/Index.cshtml", 218, 31, true);
WriteLiteral(" class=\"btn btn-primary btn-lg\"");
EndContext("~/Views/home/Index.cshtml", 218, 31, true);
BeginContext("~/Views/home/Index.cshtml", 249, 41, true);
WriteLiteral(">Learn more »</a></p>\r\n</div>\r\n<div");
EndContext("~/Views/home/Index.cshtml", 249, 41, true);
BeginContext("~/Views/home/Index.cshtml", 290, 12, true);
WriteLiteral(" class=\"row\"");
EndContext("~/Views/home/Index.cshtml", 290, 12, true);
BeginContext("~/Views/home/Index.cshtml", 302, 11, true);
WriteLiteral(">\r\n <div");
EndContext("~/Views/home/Index.cshtml", 302, 11, true);
BeginContext("~/Views/home/Index.cshtml", 313, 17, true);
WriteLiteral(" class=\"col-md-4\"");
EndContext("~/Views/home/Index.cshtml", 313, 17, true);
BeginContext("~/Views/home/Index.cshtml", 330, 359, true);
WriteLiteral(@">
<h2>Getting started</h2>
<p>
ASP.NET Web API is a framework that makes it easy to build HTTP services that reach
a broad range of clients, including browsers and mobile devices. ASP.NET Web API
is an ideal platform for building RESTful applications on the .NET Framework.
</p>
<p><a");
EndContext("~/Views/home/Index.cshtml", 330, 359, true);
BeginContext("~/Views/home/Index.cshtml", 689, 24, true);
WriteLiteral(" class=\"btn btn-default\"");
EndContext("~/Views/home/Index.cshtml", 689, 24, true);
BeginContext("~/Views/home/Index.cshtml", 713, 53, true);
WriteLiteral(" href=\"http://go.microsoft.com/fwlink/?LinkId=301870\"");
EndContext("~/Views/home/Index.cshtml", 713, 53, true);
BeginContext("~/Views/home/Index.cshtml", 766, 49, true);
WriteLiteral(">Learn more »</a></p>\r\n </div>\r\n <div");
EndContext("~/Views/home/Index.cshtml", 766, 49, true);
BeginContext("~/Views/home/Index.cshtml", 815, 17, true);
WriteLiteral(" class=\"col-md-4\"");
EndContext("~/Views/home/Index.cshtml", 815, 17, true);
BeginContext("~/Views/home/Index.cshtml", 832, 202, true);
WriteLiteral(">\r\n <h2>Get more libraries</h2>\r\n <p>NuGet is a free Visual Studio " +
"extension that makes it easy to add, remove, and update libraries and tools in V" +
"isual Studio projects.</p>\r\n <p><a");
EndContext("~/Views/home/Index.cshtml", 832, 202, true);
BeginContext("~/Views/home/Index.cshtml", 1034, 24, true);
WriteLiteral(" class=\"btn btn-default\"");
EndContext("~/Views/home/Index.cshtml", 1034, 24, true);
BeginContext("~/Views/home/Index.cshtml", 1058, 53, true);
WriteLiteral(" href=\"http://go.microsoft.com/fwlink/?LinkId=301871\"");
EndContext("~/Views/home/Index.cshtml", 1058, 53, true);
BeginContext("~/Views/home/Index.cshtml", 1111, 49, true);
WriteLiteral(">Learn more »</a></p>\r\n </div>\r\n <div");
EndContext("~/Views/home/Index.cshtml", 1111, 49, true);
BeginContext("~/Views/home/Index.cshtml", 1160, 17, true);
WriteLiteral(" class=\"col-md-4\"");
EndContext("~/Views/home/Index.cshtml", 1160, 17, true);
BeginContext("~/Views/home/Index.cshtml", 1177, 175, true);
WriteLiteral(">\r\n <h2>Web Hosting</h2>\r\n <p>You can easily find a web hosting com" +
"pany that offers the right mix of features and price for your applications.</p>\r" +
"\n <p><a");
EndContext("~/Views/home/Index.cshtml", 1177, 175, true);
BeginContext("~/Views/home/Index.cshtml", 1352, 24, true);
WriteLiteral(" class=\"btn btn-default\"");
EndContext("~/Views/home/Index.cshtml", 1352, 24, true);
BeginContext("~/Views/home/Index.cshtml", 1376, 53, true);
WriteLiteral(" href=\"http://go.microsoft.com/fwlink/?LinkId=301872\"");
EndContext("~/Views/home/Index.cshtml", 1376, 53, true);
BeginContext("~/Views/home/Index.cshtml", 1429, 51, true);
WriteLiteral(">Learn more »</a></p>\r\n </div>\r\n</div>\r\n\r\n");
EndContext("~/Views/home/Index.cshtml", 1429, 51, true);
}
}
}
最佳答案
在搭建脚手架时,添加第一个 View 似乎出了点问题。我没有检查 View 文件夹中的 web.config 文件,结果发现添加了一个 namespace ,名为 WebApplication1。我不知道我是怎么做到的,但在删除它之后,一切又恢复正常了。
因此,如果您遇到此类错误,请检查您所有的 Web.Config 文件。
关于c# - MVC 编译错误,在临时 ASP.NET 文件中使用 WebApplication1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30833099/
#include using namespace std; class C{ private: int value; public: C(){ value = 0;
这个问题已经有答案了: What is the difference between char a[] = ?string?; and char *p = ?string?;? (8 个回答) 已关闭
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 7 年前。 此帖子已于 8 个月
除了调试之外,是否有任何针对 c、c++ 或 c# 的测试工具,其工作原理类似于将独立函数复制粘贴到某个文本框,然后在其他文本框中输入参数? 最佳答案 也许您会考虑单元测试。我推荐你谷歌测试和谷歌模拟
我想在第二台显示器中移动一个窗口 (HWND)。问题是我尝试了很多方法,例如将分辨率加倍或输入负值,但它永远无法将窗口放在我的第二台显示器上。 关于如何在 C/C++/c# 中执行此操作的任何线索 最
我正在寻找 C/C++/C## 中不同类型 DES 的现有实现。我的运行平台是Windows XP/Vista/7。 我正在尝试编写一个 C# 程序,它将使用 DES 算法进行加密和解密。我需要一些实
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
有没有办法强制将另一个 窗口置于顶部? 不是应用程序的窗口,而是另一个已经在系统上运行的窗口。 (Windows, C/C++/C#) 最佳答案 SetWindowPos(that_window_ha
假设您可以在 C/C++ 或 Csharp 之间做出选择,并且您打算在 Windows 和 Linux 服务器上运行同一服务器的多个实例,那么构建套接字服务器应用程序的最明智选择是什么? 最佳答案 如
你们能告诉我它们之间的区别吗? 顺便问一下,有什么叫C++库或C库的吗? 最佳答案 C++ 标准库 和 C 标准库 是 C++ 和 C 标准定义的库,提供给 C++ 和 C 程序使用。那是那些词的共同
下面的测试代码,我将输出信息放在注释中。我使用的是 gcc 4.8.5 和 Centos 7.2。 #include #include class C { public:
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我的客户将使用名为 annoucement 的结构/类与客户通信。我想我会用 C++ 编写服务器。会有很多不同的类继承annoucement。我的问题是通过网络将这些类发送给客户端 我想也许我应该使用
我在 C# 中有以下函数: public Matrix ConcatDescriptors(IList> descriptors) { int cols = descriptors[0].Co
我有一个项目要编写一个函数来对某些数据执行某些操作。我可以用 C/C++ 编写代码,但我不想与雇主共享该函数的代码。相反,我只想让他有权在他自己的代码中调用该函数。是否可以?我想到了这两种方法 - 在
我使用的是编写糟糕的第 3 方 (C/C++) Api。我从托管代码(C++/CLI)中使用它。有时会出现“访问冲突错误”。这使整个应用程序崩溃。我知道我无法处理这些错误[如果指针访问非法内存位置等,
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 7 年前。
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,因为
我有一些 C 代码,将使用 P/Invoke 从 C# 调用。我正在尝试为这个 C 函数定义一个 C# 等效项。 SomeData* DoSomething(); struct SomeData {
这个问题已经有答案了: Why are these constructs using pre and post-increment undefined behavior? (14 个回答) 已关闭 6
我是一名优秀的程序员,十分优秀!