Looks like IE ignores \r\n in text when the text is placed into a textarea. Here's how it looks in FF/Chrome/Opera:
Paragraph1 sometext
Paragraph2 othertext
And in IE7/8:
Paragraph1 sometextParagraph2 othertext
I tried changing "new-line" css parameter with no luck. Any ideas what might be wrong?
I use asp.net as back end, where I assign that text to the textarea, but I doubt it's relevant.
UPDATE: Seems like it's asp.net that is rendering asp:TextArea differently for different browsers - for IE it seems to ignore newline characters. When I replace asp:TextBox with textarea, I get correct results. Any ideas how to fix that?