This is probably again a newbie question.
When I create an ASP.NET MVC2 application, an Account Controller with an Action LogIn is created like this:
[H
You could explicitly specify the view to return:
return View("~/Views/Home/Index.aspx", model);
This way error information will be preserved and correct view rendered.