Add a linebreak in an HTML text area
You could use \r\n
, or System.Environment.NewLine
.
If it's not vb you can use 

(ascii codes for cr,lf)
Add a linefeed ("\n") to the output:
<textarea>Hello
Bybye</textarea>
Will have a newline in it.