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
You can use:
return View("../Category/NotFound", model);
It was tested in ASP.NET MVC 3, but should also work in ASP.NET MVC 2.