Hi I need to parse xml with Classic asp
here is the xml
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.
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.