Making Label show multiline text
Description: When data is collected via a textbox and line breaks are provided in the input, this is a way to show those breaks in a label.
Link: http://www.codekeep.net/snippets/406f2f4c-bb8b-47a9-957b-3d5f40079702.aspx
public string WrappableText(string source)
{
string nwln = Environment.NewLine;
return "<p>" +
source.Replace(nwln + nwln, "</p><p>")
.Replace(nwln, "<br />") + "</p>";
}





