This question is locked. New answers and comments are not allowed.
Hi,
I'm trying to test Asynchronous file uploads and this is the scenario:
I'm using my local dev box and using IIS 7, trying to upload from local hard drive to another folder just to test.
If i choose small files then i cant really test as it's too fast and i dont get to select the next file.
I'm trying to upload files like 1GB just to have time to select another file and see how the Asynchronous upload works but the page freezes until the upload finish and then opens the select file dialog!
Also Multiple file selection does not work and i can only select one file.
Any idea?
Thanks.
Here is my MVC3 Razor View:
I'm trying to test Asynchronous file uploads and this is the scenario:
I'm using my local dev box and using IIS 7, trying to upload from local hard drive to another folder just to test.
If i choose small files then i cant really test as it's too fast and i dont get to select the next file.
I'm trying to upload files like 1GB just to have time to select another file and see how the Asynchronous upload works but the page freezes until the upload finish and then opens the select file dialog!
Also Multiple file selection does not work and i can only select one file.
Any idea?
Thanks.
Here is my MVC3 Razor View:
<p class="note"> Maximum allowed file size: 2 GB </p> <p> @(Html.Telerik().Upload() .Name("attachments") .Multiple(true) .Async(async => async .Save("Upload", "FileManager", new { uploadSeqNum = ViewBag.UploadSeqNum }) .Remove("RemoveUpload", "FileManager", new { uploadSeqNum = ViewBag.UploadSeqNum }) .AutoUpload(true) ) .ClientEvents(events => events .OnComplete("onComplete") .OnRemove("onRemove") ) ) </p>