Asp.net mvc 4 是否使用Active Directory身份验证?

Asp.net mvc 4 是否使用Active Directory身份验证?,asp.net-mvc-4,active-directory,windows-authentication,Asp.net Mvc 4,Active Directory,Windows Authentication,我继承了MVC4应用程序。看起来好像使用了Windows身份验证,但我还被告知“Active Directory身份验证”用于某些权限。我在web.config中没有看到有关Active Directory的任何内容。 在web.config中: <authentication mode="Windows" /> <roleManager defaultProvider="DefaultRoleProvider"> <providers>

我继承了MVC4应用程序。看起来好像使用了Windows身份验证,但我还被告知“Active Directory身份验证”用于某些权限。我在web.config中没有看到有关Active Directory的任何内容。 在web.config中:

<authentication mode="Windows" />
   <roleManager defaultProvider="DefaultRoleProvider">
      <providers>
         <add name="DefaultRoleProvider" type="System.Web.Providers.DefaultRoleProvider, System.Web.Providers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=21bf1234ad634e53" connectionStringName="DefaultConnection" applicationName="/" />
       </providers>
   </roleManager>
此应用程序中是否使用“Active Directory身份验证”


谢谢

只要应用程序服务器位于用户注册的域上,windows身份验证将与Active Directory集成

配置文件中的下一行启用了此类功能

<authentication mode="Windows" />

谢谢StfBln,我看到了你推荐的帖子,让我困惑的是,在我的案例中,“匿名身份验证”与WA一起启用,并且没有使用“…拒绝…”语句。似乎使用WA比在那篇文章中要简单得多?我是说WA和广告
<authentication mode="Windows" />