Steve Atkinson
Steve Atkinson

Reputation: 1239

.net mvc equivalent to JSF ui:include

I am moving from a JSF project to a .net project. One of the great things about facelets is the ability to use <ui:include> to modularise your html into small fragments that are easier to manage and reuse.

So far, I have not yet seen anything in .net MVC that can give this same flexibility.

Any advice/suggestions?

Upvotes: 1

Views: 188

Answers (1)

user2048293
user2048293

Reputation: 26

IF you are using asp.net mvc 3 or 4, you can use in the view @Html.renderpartial, even if you using from controller there is a PartialViewResult

Upvotes: 1

Related Questions