I need to render a view from inside a view.
For the sake of question, i'll call them blocks.
I have 5 controllers, each of them has an action that is called BlockAction(), and it displays some of the information from that controller.
In the Index page for the whole website I need to call all 5 of those BlockAction views. What could be the best way to do this?
Thanks!