I'm looking for the Asp.net placeholder equivalent in MVC5 using Razor.
My main problem is that I have too much logic in views/partial views, so I need some kind of placeholder in which the controller could specify the view, and model to use in that placeholder, or call another controller.
Is there the possibility?
Maybe I'm talking about impossible/stupid/nonsense things or something, but I'm new to MVC and I'm currently migrating from WebForms... So sorry for the inconvenience
Edit 1:
I'm searching for more or less server control in what is renderized in the view, providing a shortcut to writing out raw HTML elements that are frequently used (common Controls), like in WebForms.