选项1:
编辑\My Documents\IISExpress\config\applicationhost.config
文件并启用windowsAuthentication,即:
<system.webServer>
...
<security>
...
<authentication>
<windowsAuthentication enabled="true" />
</authentication>
...
</security>
...
</system.webServer>
选项2:
解锁\ My Documents \ IISExpress \ config \ applicationhost.config中的WindowsAuthentication部分,如下所示
<add name="WindowsAuthenticationModule" lockItem="false" />
将所需身份验证类型的替代设置更改为“允许”
<sectionGroup name="security">
...
<sectionGroup name="system.webServer">
...
<sectionGroup name="authentication">
<section name="anonymousAuthentication" overrideModeDefault="Allow" />
...
<section name="windowsAuthentication" overrideModeDefault="Allow" />
</sectionGroup>
</sectionGroup>
在应用程序的web.config中添加以下内容
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<security>
<authentication>
<windowsAuthentication enabled="true" />
</authentication>
</security>
</system.webServer>
</configuration>
以下链接可能会有所帮助:http :
//learn.iis.net/page.aspx/376/delegating-configuration-to-webconfig-files/
安装VS 2010 SP1后,可能需要应用选项1 + 2才能使Windows身份验证正常工作。另外,您可能需要在IIS Express applicationhost.config中将匿名身份验证设置为false:
<authentication>
<anonymousAuthentication enabled="false" userName="" />
对于VS2015,IIS Express应用程序主机配置文件可能位于以下位置:
$(solutionDir)\.vs\config\applicationhost.config
<UseGlobalApplicationHostFile>
项目文件中的选项将选择默认或特定于解决方案的配置文件。