RE: reading forms

2003-01-09 Thread Ricardo_Bosch
the logic probably has to do with what order the browser decides to send. rickb -Original Message- From: Peter Choe [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 11:40 AM To: [EMAIL PROTECTED] Subject: reading forms is there a way to specify the order of the parameters

Re: reading forms

2003-01-09 Thread Jason Pyeron
for lack of a better description the names are radmonized. This is because they are in a hash. if you need them in a given order, you may want to number them. ex: form input name=field_00_id/ input name=field_01_fname/ input name=field_99_memo/ input name=field_50_authnum/ /form

Re: reading forms

2003-01-09 Thread Peter Choe
thanks for the information. i was just trying to write a generic servlet to read in any forms and email or print the results to the users. Peter Choe At 11:54 AM 1/9/2003, Jason Pyeron wrote: for lack of a better description the names are radmonized. This is because they are in a hash. if

Re: reading forms

2003-01-09 Thread Dan Lipofsky
for lack of a better description the names are radmonized. This is because they are in a hash. if you need them in a given order, you may want to number them. If it is a GET request you can do request.getQueryString() and parse the query string by hand. A bit painful and it doesn't work for

Re: reading forms

2003-01-09 Thread Craig R. McClanahan
On Thu, 9 Jan 2003, Peter Choe wrote: Date: Thu, 09 Jan 2003 11:40:19 -0500 From: Peter Choe [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: reading forms is there a way to specify the order of the parameters are read from a form in a