How to parse xml with Classic asp?

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

Hi I need to parse xml with Classic asp

here is the xml

    


        
2条回答
  •  心在旅途
    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.

提交回复
热议问题