Here is the problem,
i have one controller:
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Detail(SomeObjectX a)
{
SomeObjectY b = new SomeObjectY();
b.merge(a); //i already have merge method.
return RedirectToAction("SomeAction", "SomeController", new { c = b });
}
is it possible to pass object b to other action on different controller, in this case, to SomeAction on SomeController. thanks for your help :)