Manual Upload

Demo uploads land in a temporary store and are swept after 60 minutes. To keep files, handle FileUploaded — see Single File for the complete save pattern.
Manual Upload

Set AutoUpload="false" to let users review their selected files before uploading. A separate upload button allows them to start when ready.

What you should see: auto-upload is off, so files wait in the queue until you explicitly start them - the pattern for review-before-send flows.
Drag & drop files here, or paste from clipboard
<au:AjaxFileUpload ID="Uploader1" runat="server"
 AllowMultiple="true"
 AutoUpload="false"
 ButtonText="Select Files"
 ShowProgress="true" />

<button id="startUploadBtn" type="button">
 Start Upload
</button>

var startButton = document.getElementById('startUploadBtn');
if (startButton) {
 startButton.addEventListener('click', function () {
  var uploader = AjaxUploader.getInstance('Uploader1');
  if (uploader) uploader.startUpload();
 });
}