I need to call a method from a java bean which calls the status variable in the JSP page.
However I need to insert the newline character in the JSP Form.
In java bean, I am using the following method:
for(int i=0 ; i < uniqueList.size() ; i++)
{
String tmp=(String)uniqueList.get(i);
temp=temp+tmp+'\n';
}
I wish to display the string in multiple lines according to the number of iterations
But when the variable is called in JSP and I use it in the following manner:
<tr><td><%= status %> </td></tr>
It prints simply as a single string in a single line.
Please help.

