Re: How to upload file at the same time as the rest of the form is submitted?

  •  12-16-2010, 8:11 PM

    Re: How to upload file at the same time as the rest of the form is submitted?

    Hi jerry2,
     
    see the red code, it shows you how to detect if the upload queue has a file or not .
     
        if (uploadobj.getqueuecount() > 0)
            {
                uploadobj.startupload();
                
            }
            else
            {
                alert("Please browse files for upload");
            }
     
    If it is not  enough, please explain you requirement on detail.
     
    Regards,
     
    ken
View Complete Thread