<p>But on servlet response to the field, the statement
<br><b>out.println("&nbsp;&nbsp;&nbsp; &lt;td bgcolor=999999>&lt;input
type=text name=\"Synopsis\" size=85 MAXLENGTH=79 value="+ synopsis
+">&lt;/td>");</b><p>prints only&nbsp; <b>This </b>?


Chainlu --

Put the string into quotes to get the complete string instead of just
the first token ;-)

So change it to :
...

value=" + "\"" + synopsis + "\""

...

This will print the whole string for you. No wonder they recommend
putting the quotes for all values of the tags - though its not
compulsory !! A good practice for CGI programmers !

_s_

..

______________________________________________________
Get Your Private, Free Email at http://www.hotmail.com

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to