Page 1 of 1

Get the file names.

Posted: Fri May 21, 2010 9:00 pm
by jchen
Hi,

I'm using applet_http_ipreview.html (I changed it to applet_http_ipreview.jsp) to upload my multiple files to server.
It works fine.

I need to get all the uploaded files name (including the path.)
I'd like to add the uploaded files name to my server database file records.

How can I get the uploaded files name in your program?

Regards,

J Chen

Re: Get the file names.

Posted: Sat May 22, 2010 8:01 am
by support
You can use either JSAPI (see add-ons section) to get notified after upload in Javascript or "post" parameter such as:
<PARAM NAME="post" VALUE="http://yourserver.com/afterupload.jsp">
<PARAM NAME="postparameters" VALUE="long">

See:
http://www.jfileupload.com/products/jfi ... irect.html

Does it help?