Hi,

I have a site made with:
NT4 + Apache + JServ1.1 + JBuilder 3 C/S + MySQL 3.23.

Then, I have a form with a listbox like this HTML code:

List (use Ctrl or Shift to select more than one item):<br>
<select name="Listbox" size=4 multiple>
<option value="1">Item1</option>
<option value="2">Item2</option>
... (many items)
</select><p>

If I'm running servlet from JBuilder debugging environment,
the user can select many items and the servlet receives all
selection values separated by ",".
For example, if the user selects "Item1" and "Item2", the
servlet receives "1,2". Then, I can put this value into a
SQL code to query a MySQL database.

However, running the same servlet out of JBuilder, I think
Apache Web Server gets only one selection from listbox!!!
If the user selects many items, only the first of them is
sent to my servlet, and it receives, for above example, only
the value "1" !!!

What's the problem ??? Is this a Apache bug ? Or JServ bug ?



--
----------------------------------------------------------
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Archives and Other:  <http://java.apache.org/main/mail.html>
Problems?:           [EMAIL PROTECTED]

Reply via email to