0

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.

tereško
  • 58,060
  • 25
  • 98
  • 150
Judo
  • 5,167
  • 3
  • 24
  • 34

1 Answers1

1

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

Stilgar
  • 22,354
  • 14
  • 64
  • 101