Andy Engle wrote:
You wrote:

  
Are there any ways I can select multiple files once in jsp for file
upload?

The regular way can only pick up one.
<INPUT type="file" name="file" size="30">
    

Perhaps you could use multiple <input... file> tags, giving each of
them a different name.  Then, write your JSP or Servlet to handle each
uploaded file based upon the different names you assigned in the input
tags.


Andy

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html




  
Maybe you could add some _javascript_ on the client side that will add the necessary file tags as they populate the existing ones.

Just my 2 cents,

PB

Reply via email to