Behnam Shomali
Behnam Shomali

Reputation: 863

RenderAction from OtherArea in MVC 2.0

How Can i use renderaction to render an action from inner Area in ASP.NET MVC 2.0?

Upvotes: 1

Views: 94

Answers (1)

jwsample
jwsample

Reputation: 2411

<% Html.RenderAction("ActionName", "ControllerName", new {area="AreaName"}); %>

Upvotes: 1

Related Questions