RAHIMUNISA_N wrote:
              pw.println("<input type=hidden name="+sName[j]+"
> value="+sValue[j]+" > ");
> }

As a first step, try putting single quotes around your value (
+"value='"+sValue[j]+"'>").  Otherwise you will have a problem when your
value is two words - only the first word will actually be returned.  To
be more thorough, you should do some form of html encoding.  There was a
recent thread that pointed to methods that do this.

___________________________________________________________________________
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