Hi. I have an existing servlet that retrieves values into an array for a particular parameter name (i.e. - I am sending two values with the same name from 2 input tags of a form). The servlet is fine with this, as when I do a getParameter for ONE name I get both values into an array in the servlet. The problem is, I would like to have the same servlet as the action taken on submission of a Notes form, without having to change the servlet. The only way I can do this is if I can pass two form fields with the same name, but different values.
I know that I can have a Notes form field specified with “Allow multiple values”, but this does not generate the extra HTML INPUT TAG that I need to get the additional field value to my servlet.
Is there any way to do this - have the form somehow generate two input tags with the same name, but different values?
Thanks