I've inherited an ASP.NET MVC 3 application. I know NOTHING about MVC 3. I've been using ASP.NET Web Forms though for 5+ years. When I attempt to launch the application from Visual Studio, I receive a 404. The browser points to http://localhost/Account/Logon. I've noticed that in my project, there is:
- /Controllers/AccountController.cs
- /Views/Account/LogOn.cshtml
I am assuming this is what should be launched.I've set a breakpoint in the Global.asax.cs and found that I am being redirected to this page via the following event:
void WSFederationAuthenticationModule_AuthorizationFailed(object sender, AuthorizationFailedEventArgs e)
{
e.RedirectToIdentityProvider = false;
HttpContext.Response.Redirect("/Account/Logon");
}
When I launch the application, I get a 404. I'm completely lost in regards to how to resolve this. I also don't know how to "Set as Start Page" in the MVC world. Can somebody please help me get over this hurdle? I just want to run the application. Thank you so VERY VERY much!