It appears that when text is placed into a textarea, IE ignores \r\n while FF/Chrome/Opera do not. Here's how the rendering differs:
Paragraph1 sometext
Paragraph2 othertext
In IE7/8, however, it renders as:
Paragraph1 sometextParagraph2 othertext
I have attempted to adjust the "new-line" CSS parameter with no success. Any thoughts on what may be causing this issue?
On the backend, I am using asp.net which assigns the text to the textarea. Though, I don't think this is relevant.
UPDATE: It seems that asp.net is rendering asp:TextArea differently in various browsers - specifically, IE ignoring newline characters. When I switch from asp:TextBox to textarea, the issue is resolved. Any suggestions for fixing this?