Re: Function Call when Finished Uploading Multiple Files

  •  10-12-2008, 11:52 PM

    Re: Function Call when Finished Uploading Multiple Files

    Hi,
     
     
    Currently we do not contains that server event .  Maybe we would provide that event in the future. We need think deeply on this issue.
     
    ----------
     
    Currently you can attach the uploader OnPreRender event , like this :
     
    int uploadedcount=0;
    void uploader_OnFileUploaded(...)
    {
        uploadedcount++;
        ...you must handle the event argument here..
    }
    void uploader_OnPreRender(...)
    {
        if(uploadedcount==0)return;
        ....now some files have been uploaded.
        ....process it here.
    }
     
     
    Regards,
    Terry
     
View Complete Thread