There are a few questions on SO about redirecting to an action in another area but none answers a more specific question that I have.
Let's say I have an Action like this:
public virtual ActionResult ActioName(ViewModel model)
{
return View(model);
}
If there wouldn't be a model parameter, you would do the following to redirect to this action from another area:
return RedirectToAction("ActioName", "ControllerName", new { Area = "" });
I tried including a model as well as the area in multiple ways but didn't work. I need a way to include both the area name and model. Thank you.
EDIT: TempData is not an answer, I do not want to modify the target controller.