Uploading large files in chucks without changing any configuration at server.
function UploadFileOnSubmit() {
var file = document.getElementById("FileInput").files[0]
UploadLargeFile(file, AsyncUpload, "URL To Post The data");
}
Upload large files in chucks without changing any configuration at server.
JavaScript