> > > Could this not be extended to cope with GET params?
> > 
> > Should work for GET as well!
> > --
> > Torsten
> 
> OK, I must be well out of it.  What did you mean by "query parameters" then
> if not either POST or GET parameters?

It shouldn't matter if you have a POST

  <form>
    <input type="hidden" name="param" value="test">
  </form>

or a GET

  page.html?param=test

both should work since it is always

  request.getParameter("param")

And the "?param=test" is the query string.
Have a look at the request object...
--
Torsten

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

Reply via email to