I need to search for the attributes Att1, Att2, to an xml element in classic ASP. Please help me. I'm starting with a string of xml like the following: <aNode> <bNode att1="abc">AAA</bNode> <cNode att2="xyz"></cNode> </aNode> Please help and thanks in advance.
You can use XPath to accomplish this task. Refer to any sample program on msdn. Let me know in case you need further assistance.