Skip to main content
A newer version of this page is available. .

ASPxClientUploadControl.Upload Method

Initiates uploading of the specified file(s) to the web server’s memory.

Declaration

Upload(): void

Remarks

Use the Upload method to upload the specified file(s) using an AJAX callback technology.

A call to the Upload method sends a specific callback to the server that initiates uploading of the file(s) selected within the ASPxUploadControl. At the same time, the ASPxClientUploadControl.FileUploadStart client event fires allowing specific client actions to be performed in response to the file upload being initiated. When the specified file’s upload is completed on the server during the callback processing, the ASPxUploadControl.FileUploadComplete server event is generated, enabling the uploaded file to be validated and saved to a specific location on the server. Finally, the ASPxClientUploadControl.FileUploadComplete client event occurs when the processed callback returns from the server side back to the client.

Example

In this example, the ASPxProgressBar control is used to visualize the progress of a file upload initiated within the ASPxUploadControl. The ASPxClientUploadControl.UploadingProgressChanged client event of the ASPxUploadControl is handled, to supply the ASPxProgressBar control with current progress information. Using the ASPxProgressBar as a separate control, allows placing it at any desired position within the page. The complete sample project is available in the DevExpress Code Central database at E1252.

function OnBtnUploadClick(s, e){
            if(uploadControl.GetText() != ""){
                lblCompleteMessage.SetVisible(false);
                pbUpload.SetPosition(0);
                uploadControl.Upload();
                btnUpload.SetEnabled(false);
                pnlProgress.SetVisible(true);
            }
        }

        function OnUploadProgressChanged(s, e){
            pbUpload.SetPosition(e.progress);
        }

        function OnFileUploadComplete(s, e){
            if(e.isValid){
                btnCancel.SetVisible(false);
                btnUpload.SetEnabled(true);
                pbUpload.SetPosition(100);
                lblCompleteMessage.SetVisible(true);
            }
            else{
                btnUpload.SetEnabled(true);
                pnlProgress.SetVisible(false);
            }
        }

        function OnBtnCancelClick(s, e){
            uploadControl.Cancel();
            btnUpload.SetEnabled(true);
            pnlProgress.SetVisible(false);
        }

        function OnUploadControlTextChanged(s, e){
            btnUpload.SetEnabled(s.GetText() != "");
        }
See Also