Hi,
I'm using a LoginBox placed in MasterPage in order to user be able to login from any site pages.
The form action is declared by
<% using (Html.BeginForm("LogOn", "Account", FormMethod.Post))
but after POST and if failed login occurs i need stay on the same page and display Validation Messages.
So how can i do to stay on the calling page and not being redirected to Account LogOn View ?
Thanks.