Photo Gallery Upload

Photo Gallery Upload

Upload multiple photos and preview them in a responsive grid gallery layout. Images are displayed as thumbnails immediately after selection.

Drag & drop files here, or paste from clipboard
<au:AjaxFileUpload ID="Uploader1" runat="server"
 AllowMultiple="true"
 EnableLightbox="true"
 AllowedExtensions=".jpg,.jpeg,.png,.gif,.webp"
 AutoUpload="true" />

// JavaScript API approach
AjaxUploader.create(el, {
 uploadUrl: '/ajaxupload.axd/upload',
 multiple: true,
 allowedExtensions: '.jpg,.jpeg,.png,.gif,.webp',
 autoUpload: true,
 onSelect: function (file) {
 var reader = new FileReader();
 reader.onload = function (e) {
 // Append thumbnail to gallery grid
 grid.appendChild(createThumb(e.target.result, file.name));
 };
 reader.readAsDataURL(file);
 }
});