How to get request prameters in right order.

2001-03-27 Thread Krzysztof Zielinski
Hello. I'm trying to get all parameters from request in right order. Right order means that I need parameters in order as they were in HTML Form. I can get all parameters by the help request.getParameterNames() but it returns them as hash table keys. So we lost their original order. I have

Re[2]: How to get request prameters in right order.

2001-03-27 Thread Krzysztof Zielinski
Hello Anthony, Tuesday, March 27, 2001, 6:59:54 PM, you wrote: A Web browsers are not required to return the form values in the order they A are in in the form. A You should therefore not expect the results to be returned in any A particular order. A Bap. I have read on the W3.org page

Re[4]: How to get request prameters in right order.

2001-03-27 Thread Krzysztof Zielinski
Hello Filip, Tuesday, March 27, 2001, 7:24:27 PM, you wrote: FH public java.lang.String getQueryString() FH in HTTPServletRequest and you can parse them yourself I'm afraid that parameters passed by the help method="post" in HTML Form aren't available by getQueryString(). I can't use