I am trying to import some xml into an asp page for manuipulation. I have:
I get :Code:<% Dim xmlDoc Set xmlDoc=Server.CreateObject("Microsoft.XMLDOM") xmlDoc.async=false xmlDoc.load(Server.MapPath("xmldata/2006-07_JUL-SEP.xml")) xmlDoc.load(Request) If xmlDoc.parseError.errorcode<>0 then 'error handling code Response.Write(xmlDoc.parseError.errorcode) Else 'proceed Response.Write("Everthing OK so far!") End If %>
error = -1072896680
is it obvious where i'm going wrong (the xml is valid)?
monkey






Bookmarks