iam now developing web page for online test(purely in xml) and there iam having some problem while appending(using appendchild)
like this
var ques=new ActiveXObject("microsoft.xmldom");
ques.async=false;
ques.load("question.xml");
when i made any changes to the file it affects only the object .it cannot alter the original xml file.how can i change the original xml file.pls help me .
Comments
ques.save "question.xml"
The next time you load the file, you'll get what you're looking for.
By the way, another property you're probably going to want to start setting is:
ques.async = false;
ques.setProperty "SelectionLanguage", "XPath";
this uses the W3C XPath spec instead of M$ backwards-compatibility with their own standard XPath. Save yourself some headaches
Luck,
Ethan
: iam now developing web page for online test(purely in xml) and there iam having some problem while appending(using appendchild)
: like this
:
: var ques=new ActiveXObject("microsoft.xmldom");
: ques.async=false;
: ques.load("question.xml");
: when i made any changes to the file it affects only the object .it cannot alter the original xml file.how can i change the original xml file.pls help me .
:
:
:
ques.Save ""
Good luck for u. U try this it would work.