This is a migrated thread and some comments may be shown as answers.

[Solved] Big files upload freezing issue

0 Answers 111 Views
Upload
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Sean
Top achievements
Rank 1
Sean asked on 05 Jan 2012, 06:09 PM
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:

<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>

Tags
Upload
Asked by
Sean
Top achievements
Rank 1
Share this question
or