Asynchronous Upload

15 May 20171 minute to read

The AsyncUpload property is Boolean type, which allow us to upload and remove files asynchronously.When multiple files are chosen in Asynchronous upload,files will be uploaded one by one to the server.User interaction with the page will not be interrupted at the time of upload.User can also remove the file even after uploading.This is the best way of file upload when compared to synchronous so by default UploadBox works with asynchronous upload option only.To achieve this, set the AsyncUpload property to ‘true’. The default value of AsyncUpload property is ‘true’.

The following steps guide you in uploading the file asynchronously.

  1. In the VIEW page, add the below script to configure the UploadBox element.
  • CSHTML
  • // In the view page, add the UploadBox element.
    
    @Html.EJ().Uploadbox("uploadbox").SaveUrl("Uploadbox/Save").RemoveUrl("Uploadbox/Remove").AsyncUpload(true)