How to display text (with line breaks) from a record
Dear all.
I am sure this is a stupid question but i am new to JSP.
What i am trying to do is to display some a record in page. This records is some text with line breaks like:
lorem ipsumt kksjkjksjdkfjksjdf.
sdfsdfkjkjkjskdjksf
When i display it using:
<%=(((rs_us_data = rs_us.getObject("text"))==null || rs_us.wasNull())?"":rs_us_data)%>
I just see lorem ipsumt kksjkjksjdkfjksjdf. sdfsdfkjkjkjskdjksf with no line breaks. I know in ASP i did a replace to recognize the br tag but i don't know how to solve it with JSP.
Thanks so much for your help

