I'm creating a web page which gets records from a database, these records are mapped as dictionary. I want to be able to dynamically create a structure as follows
<ul>
<li>row.GetString("firstname")</li>
<li>row.GetStrin("lastname")</li>
</ul>
so far i have mapped the results and i am looping each record please can some one help me with how i may be able to dynamically create html using c#
BulletedListcontrol.