Dear all,
i'm new in vbscript and i want to take a string from database and load it into xml dom object but i can't.
My code:
'Creating XML object
set xmlDoc=CreateObject("Microsoft.XMLDOM")
xmlDoc.async="false"
xmlDoc.load
MsgBox xmlDoc
for each x in xmlDoc.documentElement.childNodes
frmMyForm.timeinfo2.value=x.nodename
frmMyForm.timeinfo3.value=x.text
'document.write(x.nodename)
'document.write(": ")
'document.write(x.text)
next