How do I find the value of a node in the next level down?

arvinrayaneh

New Member
So I currently have a XML Node at the Item level:\[code\] <Item> <Item_Number>0000000063089</Item_Number> <English_Description>MOUNTAIN DEW</English_Description> <French_Description>MOUNTAIN DEW</French_Description> <Price>219</Price> <Department>000006</Department> <Department_Description>BEVERAGES</Department_Description> <FHST>11</FHST> <HST>18</HST> <UPC>0006900005056</UPC> <Total_Without_Tax>219</Total_Without_Tax> <Total_With_Tax>248</Total_With_Tax> <Quantity>1</Quantity> </Item>\[/code\]How do I get say the Item_Number value, which is 0000000063089 for that Node only? In C#.The node is stored as this:\[code\] XmlNode node;\[/code\]
 
Back
Top