I'm developing an ASP.NET MVC 5 project with C# and .NET Framework 4.5.1.
I want to enable Active Directory authentication and I have done this on Web.Config:
<system.web>
<compilation debug="true" targetFramework="4.5.1" />
<httpRuntime targetFramework="4.5.1" />
<authentication mode="Windows" />
<authorization>
<deny users="?" />
</authorization>
</system.web>
But I don't know what I have to do on IIS Express 8 to enable it.
What do I have to do to configure IIS Express 8?
Go to the complete details ...