I'm using Ext JS 4.0 for all my layout and ASP.net C# for the server side. I'm doing a multiple file upload. I already have a progress bar for each file uploading in JS. But I don't have the progress value (So it's always 0%). I need to know the progression and for which file.
I'm using XMLHttpRequest
in JS, I get a HttpPostedFileBase
in C# and use the SaveAs(path)
method to save the file on the server.
Thanks in advance !