Link to home
Start Free TrialLog in
Avatar of ITsolutionWizard
ITsolutionWizardFlag for United States of America

asked on

xmdocument, aspx, net

Below codes, how can get <NetPrice>? In this case 226.00


<Status>Completed</Status>
                <CustomerNumber>335281</CustomerNumber>
                <OrderDate>04-10-15</OrderDate>
                <OrderDetail>
                <Item id="0">
                <Model><![CDATA[AAS3602I]]></Model>
                <Quantity>1</Quantity>
                <DealerPrice>226.000</DealerPrice>
                <NetPrice>226.000</NetPrice>
               </Item>
                </OrderDetail>


 XmlDocument xml = new XmlDocument();
 xml.LoadXml(d.GetData());

 string status = xml.SelectSingleNode("//Status").InnerXml;
ASKER CERTIFIED SOLUTION
Avatar of zc2
zc2
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of ITsolutionWizard

ASKER

https://www.experts-exchange.com/questions/28653962/jquery.html

Great ... thank you.

Above is another one if you have time