tags:

views:

8023

answers:

7

Hello all,

How can i add a line break to the text area in a html page? i use VB.net for server side coding.

+4  A: 

Add a linefeed ("\n") to the output:

<textarea>Hello


Bybye</textarea>

Will have a newline in it.

Loren Segal
+1  A: 

You could use \r\n, or System.Environment.NewLine.

Forgotten Semicolon
+1  A: 

I believe this will work:

TextArea.Text = "Line 1" & vbCrLf & "Line 2"

System.Environment.NewLine could be used in place of vbCrLf if you wanted to be a little less VB6 about it.

Garry Shutler
A: 

In a text area, as in the form input, then just a normal line break will work:

<textarea>
This is a text area
line breaks are automatic
</textarea>

If you're talking about normal text on the page, the <br /> (or just <br> if using plain 'ole HTML4) is a line break.

However, I'd say that you often don't actually want a line break. Usually, your text is seperated into paragraphs:

<p>
  This is some text
</p>
<p>
  This is some more
</p>

Which is much better because it gives a clue as to how your text is structured to machines that read it. Machines that read it include screen readers for the partially sighted or blind, seperating text into paragraphs gives it a chance of being presented correctly to these users.

SpoonMeiser
+2  A: 

If you're inserting text from a database or such (which one usually do), convert all "<br />"'s to &vbCrLf. Works great for me :)

A: 

Thanks also solved my problem

tasawerabbas
+1  A: 

If it's not vb you can use &#013;&#010; (ascii codes for cr,lf)

jonas