views:

529

answers:

1

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

+5  A: 

Did you try this?:

return RedirectToAction("action", "controller", new { area = "area" });
eu-ge-ne
I am not seeing this work when I go from an area back to the main app. Area=""??
MvcCmsJon