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