Hi all. I have an ASP.NET MVC site that uses Forms authentication. Security runs well on my development machine. My problem is that when I publish my site (Godaddy), when the user is redirected to the login page, instead of showing me that page, the browser
prompts me directly for credentials. Even worse, I doesn't let me log in even when I'm using the correct username and password.
My Web.config is pretty straight forward:
<authentication mode="Forms">
<forms loginUrl="~/Home/IniciarSesion" timeout="2880" />
</authentication>
I don't have any membership provider configured (removed those sections from Web.config), and I have my user name and password hardcoded in my controller, for testing purposes, but I haven't been able to log in.
Any suggestions?
Go to the complete details ...