Avatar

Level 8

Hello

When concatenating a couple of strings, i need to get them in 2 lines/rows on the form, like below,

my_ID + " " + my_date + " " + my_time + my_COMMENT

i need it to display like below

ABC 08-26-2011 09:08

This is my COMMENT that My COMMENT should come in next line, pls. let me know how to concatenate the above strings, pls. let me know Java Script

     Actually, i kept it like below, but not working corerctly,

my_ID + " " + my_date + " " + my_time + "                                                                                                           " +my_COMMENT

Thank you