wrote:
> I have the following problem. I have an xml file, while I will
> list below and I am trying to add nodes to the xml document based on
> user input to a form.
> xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
> xmlDoc.save("Guestbook.xml");
Whether calling the save method successfully is allowed depends on the
host your script is used in. IE with normal security settings does not
allow that, I am not even sure lowering security settings will allow it.
It is however allowed to call save in a Windows Script Host script, in
an ASP page, in a HTML application (HTA), to name the most common hosts.
--
Martin Honnen
http://JavaScript.FAQTs.com/