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, b,a,c.

Thank you for any input!

        Telmo Sa

___________________________________________________________________________
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