Consider the following expression of HtmlTextBox:
= " <span style="text-decoration: underline">hello</span>"
It is evaluated as invalid due to the quotes. However, it works if you replace the inner ones with single quotes:
= " <span style="text-decoration: underline">hello</span>"