Hi.
How do I get query string when the request were POSTed
(application/x-www-form-urlencoded).
request.getQueryString() seems to return null in this
case.
Thanks in advance.
;-) Have you tried
Enumeration e =
request.getParameterNames();
String[]
val = null;
while
(e.hasMoreElements())
{
String s =
(String)e.nextElement();
val =
request.getParameterValues(s);
// ...
operate on val[] ...
}
--- |
- How do I get query string? Moonhyoung Lee
- Re: How do I get query string? Michael Wentzel
- Re: How do I get query string? Ramkumar Manoharan
