If you have a select list on a form and you can select multiple items in the list then the post normally will post the response back as ?select=1&select=5&select=7 (when select is the name of the select list). that is why in java you have the option of ServletRequest.getParameterValues(String param) That allows you to retrieve the multiple values from the single parameter
Z On 7/19/06, William Krick <[EMAIL PROTECTED]> wrote: > Are you sure this is a problem? > > Since when can you have the name appear multiple times in a URL with > different values? > > If you could, what key would you use on the server side to get the desired > value from the request object? > > Typically, the request object is a hashtable and the key can only appear > once. > _______________________________________________ Laszlo-user mailing list [email protected] http://www.openlaszlo.org/mailman/listinfo/laszlo-user
