I want to be able to do something like this:
ultraFormattedLinkLabel.Value = "<b><ANameOfSomething></b>";
But instead of formatting "<ANameOfSomething>" as bold, it displays "<b><ANameOfSomething></b>" literally with no formatting. Is there a way to get formatting to work in this situation or am I just SOL?
Hi,
Do you mean that you want literal < and > signs in the text?
To do that, you have to use escape codes for those characters so they are not interpreted as tags.
"<b><ANameOfSomething></b>";
This is exactly what I am looking to do, thanks.