Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 291 Bytes

README.md

File metadata and controls

11 lines (9 loc) · 291 Bytes

UploadLargeFileUsingJavascript

Uploading large files in chucks without changing any configuration at server.

Usage :

function UploadFileOnSubmit() {
    var file = document.getElementById("FileInput").files[0]
    UploadLargeFile(file, AsyncUpload, "URL To Post The data");
}