views:

29

answers:

1
A: 

In ASP.NET MVC 2 you can use RenderAction:

<% Html.RenderAction("Feed", "MyController"); %>

Phil Haack wrote a nice blog post about this topic.

Markus Dulghier
<% Html.RenderAction("Feed", "MyController"); %>
coure06