RedirectToAction between areas?

Viewed 90266

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

3 Answers

Try this

return RedirectToAction("ActionName", "AreaName/ControllerName");
Related