I'm trying to build my first ASP.NET MVC 4, Intranet application using IIS Express. But when I run the default project using this configuration :
 <compilation debug="true" targetFramework="4.5" />
    <httpRuntime targetFramework="4.5" />
    <authentication mode="Windows" />
    <authorization>
      <deny users="?" />
    </authorization>
The web application requires a username and a password to access. Where do I find that, plese ? How can I configure that ?
Thanks in adavance !