Question

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.

Was it helpful?

Solution

The RenderAction method allows for selecting the controller: http://msdn.microsoft.com/en-us/library/ee839451.aspx

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top