I'm writing my first MVC app that uses the membership provider and I noticed that after I login and it is successful - it won't transfer me to the default url (and i can't view any url other than the logon view) so it appears i'm not actually authenticated for some odd reason.
Here is part of the web.config - anything I might be doing wrong here? (using the default MVC account controller - fyi)
<authentication mode="Forms">
<forms loginUrl="~/Account.aspx/LogOn" defaultUrl="~/Home.aspx/Index"></forms>
</authentication>
<authorization>
<deny users="*"/>
</authorization>