I am trying to achieve something like this:
string html = @"Hello <b> World ! </b>";
The desired output would be
Hello World !
The string html can be used anywhere on label, textbox, etc.
But it is not working. It just displays as it is Hello <b> World ! </b>
Is there any other way to do this?