AJAX Forums

c00ce56e error in IE7

This is a discussion on c00ce56e error in IE7 within the AJAX Errors forums, part of the Advanced Ajax category; Hi all, I'm very confused with working Ajax together with IE7. During the creating of new object following error happens in IE7: "Could not complete the operation due ...


Go Back   AJAX Forums > Advanced Ajax > AJAX Errors

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
Old 04-10-2008, 05:40 PM   #1 (permalink)
Junior Member
 
Join Date: Apr 2008
Posts: 1
Rep Power: 0 dannygang is on a distinguished road
c00ce56e error in IE7

Hi all,

I'm very confused with working Ajax together with IE7. During the creating of new object following error happens in IE7:
"Could not complete the operation due to error c00ce56e"
Everything works well in FF.

I read a lot about encoding problem when utf-8 is used, but i used widnows-1250 encoding (also other enc. types were used without success)

Here is the part of the source code:

<?php
Header('Content-type: text/html; charset=windows-1250');
...
?>
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>
<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='cs' lang='cs'>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1250" />
....
....
javascript:
-------------
function createObjekt() { // získa objekt XMLHttpRequest
var xmlHttp = false;
try
{
// Firefox, Opera 8.0+, Safari
xmlHttp = new XMLHttpRequest();
}
catch (e)
{
// Internet Explorer
try
{
xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e)
{
try
{
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
catch (e)
{
alert("Váš prohlížeč nepodporuje AJAX!");
}
}
}
return xmlHttp;
}

function ziskejTopNabidku(osoba) {
var XMLHttpRequestObjekt = createObjekt();

var zdrojDat;
if(XMLHttpRequestObjekt) {
XMLHttpRequestObjekt.open("GET", zdrojDat);

XMLHttpRequestObjekt.onreadystatechange = function()
{
if (XMLHttpRequestObjekt.readyState == 4 &&
XMLHttpRequestObjekt.status == 200) {
ukazTopNabidku(osoba, XMLHttpRequestObjekt.responseText);
}
}
XMLHttpRequestObjekt.send(null);
}
}

I don't know where is the problem. PLEASE HELP!
thx a lot

Best regards,
Danny
dannygang is offline   Reply With Quote
Old 06-26-2008, 07:28 PM   #2 (permalink)
Banned
 
Join Date: Jun 2008
Posts: 10
Rep Power: 0 weiwei is on a distinguished road
Thumbs up 新加的空白文章1

这是新加的空白文章1,可以在UBB可视化编辑器中,添加和修改文章内容。
weiwei is offline   Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 
Thread Tools
Display Modes


Similar Threads

Thread Thread Starter Forum Replies Last Post
xml error isn't funny any more.? r2me2ss XML and XSLT 0 11-16-2007 12:22 AM
Ajax error? Appu s AJAX Errors 1 05-14-2007 09:44 AM
my space javascript error Ingrid JavaScript 2 03-24-2007 11:44 AM
I keep getting an error message coming up... NORMAN B Flex and Flash 3 03-24-2007 09:30 AM
what's the error in this one? hypertonic AJAX Help 0 01-02-2007 04:28 PM


All times are GMT -4. The time now is 07:46 AM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0 RC5
Copyright ©2006 - 2008, AJAXwith.com