I have a field in my database storing multiple paragraphs of text. They are separated by linebreaks that were entered when they were typed in.<BR><BR>I'm pulling the data out in a dataset and databinding to a label. The problem is the test comes out with all the paragraphs together, since HTML doesn't respect linebreaks. In ASP, I usually just did a replace and insert <BR> where the linebreaks were. How do I format with databinding to show line breaks where they should be? <BR>' VB.NET<BR>Replace(LabelText , VBCRLF, "<BR>") ' replaces line breaks with html equivelantI know how to use Replace(), but how do I use it in a Databind.Eval statement?You can call functions like this:<BR><BR><%# Replace(DataBinder.Eval(Container.DataItem, "mydata"),VBCRLF, " ") %><BR><BR>Aaron<BR><BR>