RedirectToAction between areas?

Jonathan picture Jonathan · Sep 8, 2009 · Viewed 79.1k times · Source

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

Answer

eu-ge-ne picture eu-ge-ne · Sep 8, 2009

Did you try this?:

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