Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to save an Changed Xml file in a Server or Hard Disk?

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I have following HTML file:
<script language=&quot;VBScript&quot;>
Dim xmldoc
Set xmldoc = CreateObject(&quot;Microsoft.XMLDOM&quot;)
XMLDoc.load(&quot;'Here I want to Append or Change Child node information
'Here I want to save Changed Xml Object in Server
'Eg: XMLDoc.save(&quot;'But this does not work
</script>
 
From the SDK:
Visual Basic Syntax
oXMLDOMDocument.save(destination)
Parameters
destination
Object. The object can represent a file name, an ASP Response object, a DOMDocument object, or a custom object that supports persistence.

IE, you cannot save to a website, if you can't reach it though the file system.

-Mats
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top