I got an error like
SCRIPT7002: XMLHttpRequest: Network Error 0x2ef3, Could not complete the operation due to error 00002ef3.
I used multipart form data to upload a large file size. Its works all the browsers except IE10. This is my piece of code
$.ajax({
url: "FileService.svc/UploadedFile",
type: 'POST',
data: formData,
mimeType: "multipart/form-data",
contentType: false,
cache: false,
processData: false,
success: function (data, textStatus, jqXHR) {}
})
Can anyone give a solution to fix this issue. Im struck up with this issue.