Rank: Member Groups: Member
Joined: 10/21/2005 Posts: 12 Points: 0
|
Hi,
I was trying to use the "FilesPerOnePackageCount" param. This works perfect so far. But I need to send individual Information with each Request.
I tried to use "AdditionalFormName" and changed the value of the Parameters in the Progress Event, everytime the Status was "UPLOAD" and the StatusText (the filename in this case) changed. But this does not seem to work, as the Uploader seems to take the Value only once.
Also I'm not sure (and I don't believe so), if the check in the Progress Event is done in time, meaning is the uploader waiting with the next upload, until the progress routine is finished ?
I also played around with the AddField Method, but did not come to any results with that too :(
Is there any special way, how I can send specific information with each Upload Request ?
Thanks for your help, Philipp
|
 Rank: Advanced Member Groups: Member
Joined: 8/3/2003 Posts: 996 Points: 1
|
Hello, Try to use the combination of BeforeUpload Event and AddField Method.
Sincerely yours, Alex Makhov
|
Rank: Member Groups: Member
Joined: 10/21/2005 Posts: 12 Points: 0
|
Hi,
I tried this already. The Problem is, that the BeforeUpload Event is realy only called, when the initial upload gets started, but not with every file, which will be uploaded.
Thanks for your help anyways, Philipp
|
 Rank: Advanced Member Groups: Member
Joined: 8/3/2003 Posts: 996 Points: 1
|
OK,
You could try to put the whole array of values with individual information into every upload request (by putting it to the additional form in BeforeUpload event) and get the appropriate array value from your upload processing code by using the PackageIndex value from the upload request.
Sincerely yours, Alex Makhov
|