Reputation: 1239
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
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