I have a simple web application written in C# MVC. It does not require a login or any authentication whatsoever for the user. I deployed it to my IIS Server. I get a 403 Forbidden error in the browser.
I've tried tweaking the authentication in all sorts of ways (enabling/disabling various authentication in IIS). I thought that Anonymous Authentication Enabled should be all I need.
I even tried adding something to my web.config saying allow *. No joy. Also tried setting authentication mode none. No luck there either.
Also, if anyone has any suggestions as to IIS Training, I'd love to hear about it. I've been able to get by thus far but it is a tool in my belt that is not as sharp as it should be.
Suggestions? Thanks to you good people in advance.
UPDATE: Fix.
<modules runAllManagedModulesForAllRequests="true" />
in web config under system.webserver did the trick.