5 Replies Latest reply on Apr 29, 2003 9:30 AM by julien1

    Multi-Valued Parameters

    h2o_polo

      Is there a way to retireve multivalued parameters from the Page object. Page.getParameter (String) returns only the first if the parameters are multivalued like for example in the

      <select name='test' multiple size='2'>
      Test 1
      Test 2
      Test 3
      Test 4


      if I select multiple values on my web page, I would like to retrieve multiple values on my server side. When I do:

      page.getParameter ("test")

      I only get the first value in the list that I selected on my client side. Page probably needs to have a ,ethod similar to request for retrieval of the parameters. In this case
      String[] getParameterValues (String name)

      Alex.