1

At the moment, I'm trying to develop an ASP.NET MVC application using a local IIS server (Dev Server was just too slow). However, every page request, including CSS/JS results in a redirect to the login page.

Anyone know what's going on?

splattne
  • 28,508
  • 20
  • 98
  • 148
jameszhao00
  • 111
  • 1

1 Answers1

1

Check every parent folder of your application for web.config files that contain something like this:

<authentication mode="Forms">
    <forms loginUrl="Login.aspx" ...></forms>
</authentication>
splattne
  • 28,508
  • 20
  • 98
  • 148