I'm trying out this code to upload file to the server,
Html:
<input type="file" id="file1" name="browsefile" multiple="multiple" accept="video/mp4,video/*">
JavaScript:
function FileUpload(SomestringParameter) {
var files = $("#file1").get(0).files;
if (files.length > 0) {
if (window.FormData !== undefined) {
var data = new FormData();
for (i = 0; i < files.length; i++) {
data.append("file" + i, files[i]);
}
$.ajax({
type: "POST",
url: "http://localhost:50443/UploadFile/" + SomestringParameter,
contentType: false,
processData: false,
data: data,
success: function (results) {
alert(results);
for (i = 0; i < results.length; i++) {
alert(results[i]);
}
}
});
}
else {
alert("This browser doesn't support HTML5 multiple file uploads!");
}
}
}
In Web Api Controller,
[HttpPost]
[ActionName("UploadFile")]
public HttpResponseMessage UploadFile([FromRoute]string SomeStringData)
{
// Save the uploaded file here on the server
}
The File is uploaded perfectly, My question is how to show progress bar, I'm using jquery mobile for designing.
How could I show a progress bar with percentage or something?
