Hi!<br><br>I have a problem with the out.write(String) function. I use Javascripts on the client side that are somewhat generated by a JSP page. Simplified example:<br><br><FONT FACE=monospace><script><br> document.all.divTest.body.innerHTML = ' <% out.write(strTest); %>'<br></script></font><br><br>This works fine when strTest is a short string like "Hello World", but it will not work if it includes when it includes linebreakes etc. Then the client script looks something like this:<br><br><FONT FACE=monospace><script><br> document.all.divTest.body.innerHTML = '<table><tr><br> <td>Test</td><br> </tr></table>'<br></script></font><br><br>which obviously generates an error. Can anyone think of a good solution to this problem. Thanks!<br><br>Galilee<br>