I am trying to upgrade an MVC project to beta using Razor (from the preview version), and now I feel weird with Razor not going to my login window, which it uses to go to (when someone asks for the required authorization action).
In my web configuration there is
<authentication mode="Forms"> <forms loginUrl="~/Account/LogOn" timeout="2880" /> </authentication>
But whenever an action with the Authorize attribute hits, the browser is redirected to "Account / Login" - a notification of registration in * NOT Log * On *. Does anyone know how to fix this in the beta version of MVC 3?
source share