ASP.NET MVC “Components”

2019-02-09 04:31发布

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?

4条回答
冷血范
2楼-- · 2019-02-09 05:17

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.

查看更多
小情绪 Triste *
3楼-- · 2019-02-09 05:32

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/

查看更多
老娘就宠你
4楼-- · 2019-02-09 05:33

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

查看更多
我只想做你的唯一
5楼-- · 2019-02-09 05:33

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

查看更多
登录 后发表回答