首页 > 解决方案 > 在 ASP.NET Webapp 中启用 Windows 身份验证

问题描述

有没有区别

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

对比

<system.web>
    <authentication mode="Windows" />
</system.web>

标签: asp.net

解决方案


推荐阅读