i'm currently learning all about the great wonders of the xml dom... but why the hell won't this code work?!?!
i always get an "object required" error...Code:<% Set objXMLDoc = Server.CreateObject("Microsoft.XMLDOM") objXMLDoc.Load("note.xml") objXMLDoc.async=false Response.Write objXMLDoc.documentElement.nodeName For Each objNode in objXMLDoc.documentElement.childNodes ' do whatever Next Set objXMLDoc = Nothing %>
thanks in advance!




Reply With Quote