Reputation: 5247
How do I associate a PartialView which will be used across the app with a Child Action? For example the PartialView could be a login bar at the top of the page which will need to have some associated logic (loading the model etc) which I would normally put in a ChildAction. However, I don't know what Controller will be used. I think I could create a base Controller class with the ChildAction and then inherit from that but I was hoping there would be a more elegant solution.
Upvotes: 0
Views: 133
Reputation: 23561
The RenderAction method allows for selecting the controller: http://msdn.microsoft.com/en-us/library/ee839451.aspx
Upvotes: 1