Click here to Skip to main content
15,918,516 members
Please Sign up or sign in to vote.
3.00/5 (1 vote)
See more:
I require some assistance, what I am trying to do is generate HTML based on a class/object which will look something like this:
C#
public List<object> FieldControls
        {
            get;
            set;
        }

        public List<string> Captions
        {
            get;
            set;
        }

        public List&lt;object> Validators
        {
            get;
            set;
        }

So what I am trying to do is based on the objects in the FieldControls property, which would be controls, I want to generate HTML, so for example if the list contains a TextBox generate HTML for that, the Captions property would be the name of the control, and Validators would be any validation that would be linked to that control and so on.

Could you please advise on the best possible solution for this?

Thanks in advance.
Posted
Updated 2-Dec-12 23:31pm
v2
Comments
Richard MacCutchan 3-Dec-12 5:34am    
The best possible solution would be to write some code. Exactly what are you expecting here?
Member 8102934 3-Dec-12 7:02am    
To generate HTML markup and render it based on the objects in the FieldControls property.
Richard MacCutchan 3-Dec-12 7:07am    
And which part are you having problems with?
Member 8102934 3-Dec-12 7:54am    
I don't really know how to go about doing it.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900