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
With this code you can obtain any controller:
var controller = DependencyResolver.Current.GetService(); controller.ControllerContext = new ControllerContext(this.Request.RequestContext, controller);