Hello all!
I have the following question.
Suppose you have a form with several inputs.
Lets say, a,b,c.
When i submit the form to a servlet, shouldn't be expected to have the order
a,b,c kept in the parameters.

I have a portion of code that outputs the parameters recieved from the form.
Enumeration names = req.getParameterNames();

...

while(names.hasMoreElements()) {
        String name = names.nextElement();
        out.println(name + "=" + request.getParameter(name));
}

...

The order i get is, a,c,b.

Thank you for any input!

        Telmo Sa

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html

Reply via email to