Hello :D
Im getting into trouple with this one. Do anybody know how to extract the ID (<product id="506343242"> ) in this XML file?
I can retrieve the other values by using xmlDOC.document Element.selectN odes("//products/group/product/stock")
I am using xmlDOC in an ASP script..
Thanks!
Im getting into trouple with this one. Do anybody know how to extract the ID (<product id="506343242"> ) in this XML file?
Code:
<?xml version="1.0" encoding="ISO-8859-1"?> <products xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="oemPriceXMLList.xsd"> <group name=""> </group> <group name="Some Soft"> <product id="506343242"> <name>Adobe Acrbobat 9</name> <stock>Yes</stock> <weight>0.5</weight> <model>6504543534</model> <shortDescription>DESCRIPTION</shortDescription> <manufacturerName>Adobe</manufacturerName> <manufacturerURL>http://www.adobe.com/</manufacturerURL> <price>300</price>
I am using xmlDOC in an ASP script..
Thanks!
Comment