"Suon, Thla" wrote:
>
> Hi Kevin,
>
> Actually, the space you see below was due to a cut and paste problem:-).
> I correctly have the syntax in my code, however, it is still NOT working.
> I am still getting NULL values for priority.

Try reposting your code. I had numerous problems trying to compile what
you originally posted. My guess is that you still have problems in your
code. For example, in the line where you construct the url string,

> out.print("location.href="+"'"+"
> http://oldbob.eng.filenet.com:8080/servlet/I
> M    prodcode="+"'"+"+"+"userInput"+"+'&priority="+priority+"'");

my compiler complains that priority is not defined (and it is not, in
the code you posted). Also, the line above appears to have tick marks
(') in wrong places.

Another suggestion: Don't separate your strings where you don't need to.
For example, much of your code looks like this:

>           out.print("<option value=  "  +">" +"select a priority");

To the compiler, this is just a single string literal; the fact that you
split it up into three different bits of quoted text doesn't matter.
While the compiler doesn't care, I would find it easier to read

  out.print("<option value=  > select a priority");

Kevin Mukhar

___________________________________________________________________________
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