I have array with multiple values in it,to display that I am putting it in the string buffer and then displaying it.
String[] svalue =strutsForm.getS();
vValue.append (svalue + "<BR>");
session.setAttribute("UIVALUE",vValue);
While displaying it does not break to next line instead it displays <BR> next the value.
Can anyone help with a solution for this?
Thanks!
String[] svalue =strutsForm.getS();
vValue.append (svalue + "<BR>");
session.setAttribute("UIVALUE",vValue);
While displaying it does not break to next line instead it displays <BR> next the value.
Can anyone help with a solution for this?
Thanks!