Hi How can I force a line break in a HTML form text area where I have no control over the code? When I try to insert line breaks and view the source the <br> character has not been inserted. When I insert the <br> tag after each line in the form, the HTML at run-time is pre-encoded with <br>. Is there a way I can escape this and insert my breaks so that at run-time the source code shows the breaks as <br>? Here is a snippet of what I am trying to acheive: <div class="Classname">: line1& lt;br& gt;line2 I want to be able to insert the text so that the code shows: <div class="Classname">: line1<br>line2 ---------------------------------------------------------- Reason: I'm selling my car through a website and I want the description to come out in List form instead of free form text. The text box may have html disabled but there is a way to do it as I have seen it on other descriptions. Many Thanks in advance.