Thanks for the reply, I was doing some thinking last night and managed to come up with the answer this morning.
It goes along the lines you were thinking at the bottom of your post:
Code:
theBody.AppendLine("<p>")
Using SR = New IO.StringReader(description)
While SR.Peek >= 0
Dim l As String = SR.ReadLine()
theBody.AppendLine(l
Leave a comment: