1

我正在创建 ASP.NET MVC 4 Web 应用程序,但是当我启动它时出现错误 401.2。

web.config 有以下部分:

<authentication mode="Windows" />

然后我在 web.config 中添加了下一行:

<system.webServer>
      <security>
        <authentication>
          <windowsAuthentication enabled="true" />
        </authentication>
      </security>
</system.webServer>

之后我收到错误 500.19

谁能帮我?

4

1 回答 1

0

在 Windows 8 下,当您选择基本的 IIS 安装时,有一些 IIS 安全性和 .NET 功能没有为 IIS 启用。

如果您将在本地运行 IIS,您还应该启用一些应用程序开发功能。

您需要转到“打开或关闭 Windows 功能”并选择其中一些:

Windows 功能开启关闭

于 2013-06-12T00:47:14.550 回答