Is it possible to break label to new lines if the contents exceeds label's width? (like it happens in multiline textbox) I know there is a word wrap css, but it's not cross-browser.
Or I need to break it manually, by inserting <br>
tag every x chars like I do it now (maybe there is a better method):
string content = HttpUtility.HtmlEncode(content);
int len = content.Length;
for (int i = 80; i < len; i = i + 80)
{
content = content.Insert(i, "<br>");
}
return content;