Checkbox

2007-07-13 Thread xiaofeng
Hi, Here's a problem. How can I do something like request.getParameterValues() with FileUpload? Need to get multiple values for a single name. (checkboxes with the same name) thanks -- _

Re: Checkbox

2007-07-13 Thread Martin Cooper
Each checkbox that is checked will be a separate file item in the list of items you get from parseRequest, so you just need to walk through the list looking for all the items with the name you need. -- Martin Cooper On 7/13/07, xiaofeng [EMAIL PROTECTED] wrote: Hi, Here's a problem. How can