Here i am using jQuery-File-Upload to upload files. it is working fine. but here file is uploading when we select file, i need to upload file after clicking on submit button. Please help me how to solve this issue. i am using the following code.
$('#fileupload').fileupload({
dataType: 'json',
url: '/VendorReport/UploadFiles',
autoUpload: true,
type: boolen,
Default:true,
success: function (msg) {
alert(msg);
}
});
<input id="fileupload" type="file" name="files[]">
<input type="submit" id="btnup" value="Upload" />
autoUpload: false,