Is it necessary to have a separate View for each controller action?
https://stackoverflow.com/questions/239263
Solution
There is no mandatory relationship between the Controller Action and a view. The controller is responsible for returning an ActionResult. The most usual way of doing this is by using a View, but they aren't hard wired. A view could be shared across Controllers for instance.
Also a Controller, can deal with the request purely on its own, returning a redirect, or a JSON result, or even its own html (though not recommended).
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow