Rank: Newbie Groups: Member
Joined: 4/19/2011 Posts: 1
|
Hi,
I am using AjaxUploader in a .net repeater to upload 10 files at the same time. Each repeater item will contain fields for "document type", "description", and a couple of checkboxes which could be completed while the file is loading. The form will then be submitted and the files processed and saved in the DB with all related information.
For each uploader I have the autoupload set to true so the moment the user selects a file, it will start to upload displaying the text progress while doing so. This works fine if only one upload is happening at any one time but if I start 2, the first one only goes ok until the second one starts after which I get an unknown error on the client, the first upload stops and the second continues until it finishes.
Is there any way that I could have 10 uploads going at the same time.
Thanks
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
You can not upload multiple files at the same time. They must occur one after another. One way to do this is to hide all other uploaders while one is uploading. You can do this by handle the uploader's ClientSideOnProgress event, then hide all other uploaders except for the one that triggers the ClientSideOnProgress event.
Thanks!
|