using vbscript...
I am able to read from a file...
But I am NOT able to read from a variable. How can I get this to work? This is what I WANT to do..
THanks,
Ralph
I am able to read from a file...
Code:
set xmlDoc = server.createobject("MSXML2.FreeThreadedDOMDocument")
xmlDoc.async = false
xmlDoc.setProperty "ServerHTTPRequest", true
xmlDoc.load( server.mappath("thedata.xml") )
But I am NOT able to read from a variable. How can I get this to work? This is what I WANT to do..
Code:
dim xmlResults : xmlResults = theXMLdataString
set xmlDoc = server.createobject("MSXML2.FreeThreadedDOMDocument")
xmlDoc.async = false
xmlDoc.setProperty "ServerHTTPRequest", true
xmlDoc.load( xmlResults )
THanks,
Ralph