Concurrent Queue
Upload multiple files simultaneously. Configure the concurrency level to control how many files upload at once.
What you should see: three files uploading at once, not all of them. Queue five or six and watch the fourth wait for a slot — that is the concurrency limit doing its job.
Drag & drop files here, or paste from clipboard
<core-upload asp-upload-url="/api/upload/upload"
asp-concurrent="3"
asp-multiple="true"
asp-progress="true"
asp-auto-upload="true">
</core-upload>
<!-- Concurrency examples -->
<!-- asp-concurrent="1" -- sequential, one at a time -->
<!-- asp-concurrent="3" -- three files at once -->
<!-- asp-concurrent="5" -- five files at once -->