up vote 8 down vote favorite
2
share [g+] share [fb]

Is there someway to have a part of the page that renders like a little sub-page, like components. For example if I have a shopping cart on all my pages?

Thanks in advance :)

link|improve this question

feedback

4 Answers

up vote 6 down vote accepted

If you want it to render another controllers action, as a component, to get encapsulation, you use.

Html.RenderAction

uses routedata to get you there, has its own viewdata and kind of mini life cycle

link|improve this answer
feedback

Using preview 5, Html.RenderPartial is your man, you can render sub-controls, and pass them your viewdata, or an arbitrary model, and new viewdata combo.

link|improve this answer
feedback

You can create an ActionFilter that modifies the view data. That way, you can decorate every action that returns the partial with the action filter. Take a look at my post:

http://stephenwalther.com/blog/archive/2008/08/12/asp-net-mvc-tip-31-passing-data-to-master-pages-and-user-controls.aspx

link|improve this answer
Interesting, thanks for the link :) – Jesper Blad Jensen aka. Deldy Sep 16 '08 at 16:39
feedback

You are looking for subcontrollers. This implementation is the best way to do what you are talking about.

Edit: I just posted about this here: http://mhinze.com/subcontrollers-in-aspnet-mvc/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.