Internet Explorer (9) keeps throwing this when I run an AJAX script trying to load content on to the page.
Asked
Active
Viewed 2,369 times
0
-
2Hmm well I remember what the first 58,733 scripts do, but 58,734 is a new one. – Pointy May 21 '12 at 19:16
-
@Jake does it associate the error with a line/file? Can you show us your code? – Sampson May 21 '12 at 19:17
-
How about some code and some specific examples?... – Snuffleupagus May 21 '12 at 19:17
-
2http://stackoverflow.com/questions/10194257/could-not-complete-the-operation-due-to-error-c00ce56e – Andreas May 21 '12 at 19:18
-
Shows a serious lack of personal research. This is exactly the sort of thing you pump into Google first. A search on "c00ce56e" turns up all sorts of useful pages. – Ben Barden May 21 '12 at 20:19
-
I did actually google something, thank you. I did as followed, and i'm still getting this error. – Jake May 21 '12 at 20:36
1 Answers
2
You are returning a Content-Type that IE does not recognize. I would check the document you are trying to serve for the char-type and other than that I would check with the server admin if you do not have access to the server-side code.

Steve Binder
- 2,270
- 1
- 14
- 6
-
`header('Content-Type: text/html; charset=iso-8859-1');` That's what I ahve. – Jake May 21 '12 at 19:36