Reputation: 9915
I am interested in building configurable ASP.NET MVC 3 UI application, by that I mean setting all UI element properties and attributes throughout XML configuration ( which can be edited with some other UI ) I have searched on Google for some platform, pattern, or common approach that leads to this goal and I did not found much.
Thanks.
Upvotes: 2
Views: 966
Reputation: 554
You can refer to the blog based on implementing XSLT View Engine
MVCDynamicForms is a good option you can consider
XSLTViewEngine is also you can consider if you are interested in XML to convert to HTML along with XSLT.
Upvotes: 0
Reputation: 36035
It's hard to tell exactly what you are looking for.
If the XML is the data that you want to show, some options:
If the XML is not the data, but only how you want to show whatever is in the model:
Upvotes: 2