> -----Original Message----- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > > What is the order in which the set/get methods of a form-bean > are called? I > am expecting, its the order in which my form-elements occur > in the HTML > code?
The Servlet spec does not dictate that request.getParameterNames() should return the parameters in any particular order, which would be neccessary in order for your assumption to hold. In many (most?) implementations of the Servlet API, the request parameters are at some point stored in a Hashtable or HashMap, which loses the original order. -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

