Asp.net-mvc – RedirectToAction between areas

asp.net-mvcasp.net-mvc-areasredirecttoaction

Is there a way to redirect to a specific action/controller on a different Area?

Best Answer

Did you try this?:

return RedirectToAction("action", "controller", new { area = "area" });