sometimes i recieve empty xml like
<?xml version="1.0" encoding="utf-8" ?>
<GetUnh xmlns="
http://www.pop3.com/" />
and with taht my pages display
Microsoft VBScript runtime error '800a01a8'
Object required: 'documentElement.childNode
s(...)'
because in my code i check:
xmlDoc.setProperty "SelectionLanguage", "XPath"
If "Error" = xmlDoc.documentElement.chi
ldNodes(0)
.nodeName Then
How can i run a check that will see if there is child first? so if there is chld i will do the check i did above...
Start Free Trial