This question is locked. New answers and comments are not allowed.
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.
regards,
Nirvan
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