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

Upload taking a very long time in IE

0 Answers 24 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.
Jatin
Top achievements
Rank 1
Jatin asked on 11 Aug 2011, 05:21 AM
Hi,
   I have used the telerik Q2 upload component and I am facing a strange problem. A file with size of arround 200kb takes less than a second to load in Google Chrome. The same file takes about 15 seconds in Internet Explorer 9. Has anyone got idea on what's wrong. I am pasting the code below.

@(Html.Telerik().Upload()
    .Name("attachments")
    .Multiple(true)
    .Async(async => async
        .Save("SaveFiles", "Message", new {messageId = ViewBag.MessageId})
        .Remove("RemoveFiles", "Message", new { messageId = ViewBag.MessageId })
        .AutoUpload(true)
    )
    .ClientEvents(events => events.OnError("onFileAttachError")))


regards,
Nirvan 
Tags
Upload
Asked by
Jatin
Top achievements
Rank 1
Share this question
or