mvc return view from another controller after create code example
Example 1: return view mvc
public ActionResult SomeAction()
{
...
return RedirectToAction("SomeAction", "SomeController");
}
Example 2: asp net mvc 5 return view from another controller
Return RedirectToRoute("Stuff");