send an array of String in an ajax request and get it in JAVA
Hi,
I would like to send an array of parameters (because the number of parameters may vary) from a JSP page for an ajax request.
Is it possible to send an array of String for example ?
I would also like to get that array of parameters in JAVA from the server side. Would the method java.lang.String[] getParameterValues(java.lang.String name) do the trick ?
Thank you in advance for your answers