hi,
I've just completed a htm file that can load a xml file and apply sorts and filters. Everything works fine locally. For some strange reason, the same files stopped working when placed online. I get the error "The data necessary to complete this operation is not yet available." Upon tracing through the script, I find that the problem is in the load command (line 2)
1. xmldoc = new ActiveXObject("MSXML.DOMDocument"
2. xmldoc.load("addressBook.xml"
When I run the script locally, xmldoc.xml would give me the entire xml tree in the debugger. However, the same command online gives me an empty string. I'm sure the addressBook.xml file is uploaded correctly and there are no spelling errors. Please advise.
I've just completed a htm file that can load a xml file and apply sorts and filters. Everything works fine locally. For some strange reason, the same files stopped working when placed online. I get the error "The data necessary to complete this operation is not yet available." Upon tracing through the script, I find that the problem is in the load command (line 2)
1. xmldoc = new ActiveXObject("MSXML.DOMDocument"
2. xmldoc.load("addressBook.xml"
When I run the script locally, xmldoc.xml would give me the entire xml tree in the debugger. However, the same command online gives me an empty string. I'm sure the addressBook.xml file is uploaded correctly and there are no spelling errors. Please advise.