Judo
Judo

Reputation: 5247

Logic for Partial Views Used Across an App

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

Answers (1)

Stilgar
Stilgar

Reputation: 23561

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

Upvotes: 1

Related Questions