How to parse xml with Classic asp?

后端 未结 2 1881
不思量自难忘°
不思量自难忘° 2021-01-27 23:36

Hi I need to parse xml with Classic asp

here is the xml

    


        
相关标签:
2条回答
  • 2021-01-28 00:25

    ondrejsv is right - XMLDom is easy to learn. It's also a standard, so once you learn it in one language, it's the same in every other language.

    Devguru.com has an excellent reference with lots of examples... I've always found it a lot more useful than MSDN.

    0 讨论(0)
  • 2021-01-28 00:34

    You may do it easily with the MSXML COM library:

    Dim xmlDoc
    Set xmlDoc = Server.CreateObject("Microsoft.XMLDOM")
    

    and some MSDN docs.

    I don't give you a concrete example for your problem, start with learning DOM - it's easy.

    0 讨论(0)
提交回复
热议问题