I have a string with html content as follows:
string eg = "hi..how <b>are</b> you?"
I am assigning this string value to the text property of a bulleted list as follows:
lst.Text = eg;
The purpose is to display "are" in bold. But currently it displays the string as it is. What property of the bulleted list is to be used to render the html controls in the string? Any help is appreciated.