asp.net-mvcasp.net-mvc-areasredirecttoaction

Can I use RedirectToAction to navigate from one area to another?


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


Solution

  • Did you try this?:

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