return view to view in another controller .net asp core code example
Example 1: mvc return view from different controller
return View("~/Views/SomeThing/Index.cshtml");
return View("~/Views/SomeThing/Index.cshtml",model);
Example 2: asp net mvc 5 return view from another controller
Return RedirectToRoute("Stuff");