I'm tryin to redirect a user back to the previous page after they login. I tried using the returnUrl parameter but for some reason it's always null.
Here is my code:
Login method:
public ActionResult Login(string returnUrl)
{
ViewBag.returnUrl = returnUrl;
return View();
}
The from in the view:
@using (Html.BeginForm(null, null, FormMethod.Post, new { id = "loginForm", returnUrl = ViewBag.returnUrl }))
Someone got an idea
Your using the wrong overload of
BeginForm
and rending an attribute forreturnUrl
rather than a route value. If you need to render anid
attribute for the form (seems unnecessary), thenotherwise, just