Category: ASP

Parsing XML in ASP:

Set objXML = createobject("XMlDOMDocument")

If objXML.Load("PATHTOXML") Then
 
    For Each objNode In objXML.selectNodes("//XPATH")
        'Add code here

    Next
Else
response.write("Error parsing XML")
End If

 

Tags:

ASP

How useful was this post?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate this post.