Replace Line Break (vbcrlf) in a String with an HTML Break:
Click here
to test this script.
Code:
Highlight
<% Function ReplaceBreak(strData) ReplaceBreak = Replace(strData, vbcrlf, "
") End Function %>