Try using the following:
lblYourLabel.Text.Replace(ControlChars.NewLine, "<br>")
I used this code in some of my pages, and it worked great. Good Luck!
--
Nathan Sokalski
http://www.nathansokalski.com/
"TTT" <> wrote in message
news:4499ce8a$0$16569$...
> Hi
>
> When users write a text in a textarea, they hit [ENTER]. So the text is
> cut by <newline> caracters.
>
> When display this text in a LabelText, i must convert these <newline> in
> <br>. Is there a control to do that?
> Otherwise, what is the best function to parse and convert <newline> tokens
> into <br> balise?
>
> Thanks
>