We're running IIS7 and have windows authentication enabled. Everything else is disabled. When we go to the page though, we aren't prompted for a windows logon, but are redirected to the default forms authentication login page (Account/Login?ReturnUrl=%2f).

Any ideas? Thanks.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Have you made sure that Windows authentication is enabled in your asp.net application and not forms?

Make sure you web.config file is setup with:

<authentication mode="Windows"/>
<authorization>
    <allow users="*"/>
</authorization>

You probably have the authentication mode in your application still set to forms authentication and that is why the forms functionality is kicking in.

Also don't forget to adjust any nest web.config files as well if you have nested folders in your application.

link|improve this answer
feedback

As well as this:

<authentication mode="Windows"></authentication>
<authorization>
  <allow users="*"/>
</authorization>

You also might need these two appSettings too:

<appSettings>
  <add key="autoFormsAuthentication" value="false" />
  <add key="enableSimpleMembership" value="false"/>
</appSettings>

See this answer on SO and Known Issues from the MVC3 release notes.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.