Really simple question: I want to be able to redirect from one page to another in Razor MVC.
The user clicks a link on the first page, which calls a method on the first controller. This method uses data from its own model, as well as methods from the second controller, to construct a model for the second controller.
I now wish to display that second view using the newly constructed model. However, there doesn't seem to be a way to use View() to do this (unless I'm blind). The two controllers are in different folders, so it can't automatically find the page to load.
Any ideas?