This example uses a classic HTML server form submission to upload
one or multiple selected image files to the server. It uses the new
Request.MultipartFiles()
function to retrieve a collection
of files on the server.
This example uses plain AJAX and HTML5 to asynchronously upload one or more image files
using script code to capture the file stream of the selected files and posting them
to the server using jQuery's .ajax()
method. Provides a generically reusable
function to handle the upload.
This example uses the third party uppy uploader and UI component to upload images using an interactive UI. Files are uploaded asynchronously and the UI provides some progress information.