I have multiline textbox in ASP.NET which renders to a textarea element. I set the Text property to a string like
test\r\n\r\n\r\ntest2
but it only renders like
test
test2
in the textarea while I expected something like this to be rendered:
test
test2
It seems the textarea eats the whitelines. How to overcome this?