Is it possible to display a view from another controller?
Say for example I have a CategoriesController and a Category/NotFound.aspx view.
CategoriesController
Category/NotFound.aspx
Yes its possible. Return a RedirectToAction() method like this:
RedirectToAction()
return RedirectToAction("ActionOrViewName", "ControllerName");