0

我在互联网上寻找过这个问题,但没有具体说明如何解决我的问题。
它是一个托管在 IIS7 上的非常小的 Web 应用程序。在我的 web.config 我有这个代码:

<system.web>
      <authorization>
        <allow users="WORKGROUP\SOMEONE"/>
        <deny users="?"/>
    </authorization>
    <roleManager enabled="true" />
    <compilation debug="true" targetFramework="4.0" />
</system.web>

当我访问我的网站时,它给了我以下错误

401 - Unauthorized: Access is denied due to invalid credentials.

我只想验证一个域用户,并且我认为我已经正确使用了所有内容。请指导我我在这里缺少什么

4

1 回答 1

1

您需要安装 Windows 身份验证并在 IIS 网站上启用它。

有关如何在 Windows 7 和 Windows Server 2008R2 上安装和配置 Windows 身份验证的详细信息,请参阅此帖子:http ://www.iis.net/configreference/system.webserver/security/authentication/windowsauthentication

于 2012-11-15T11:26:15.847 回答