Hi ,
I am using asp.net framework 1.1 and my program is storing some values in a textarea field.
Database: aaa bbb ccc
But when my program retrieve the value out and display on the screen, it will show as one line 'aaa bbb ccc'. I have tried to code in my codebehind to txtarea1.Text = Obj.a.Replace(Environment.NewLine, "<br/>"); but it will show me as 'aaa<br/>bbb<br/>ccc' on the screen. When I opened the html page, the source is actually showing aaa<br/>bbb<br/>ccc.
Appreciate anyone who can help me.