arst06d
Programmer
- Nov 29, 2002
- 324
hi
I have an xml document as follows:
Can someone priovide the syntax for the xpath property if I just want to show nodes where the type attribute is "Account"?
(is it just me, or is the MS help documentation pretty difficult to find anything helpful in ....?)
cheers
David
I have an xml document as follows:
Code:
<?xml version="1.0" encoding="utf-8" ?>
<accounts>
<account number="999999" type="Account" name="account name" ccy="GBP" balance="100.36" />
<account number="888888" type="Account" name="account name2" ccy="GBP" balance="-999.36" />
<account number="123456" type="CARD" name="Card name" ccy="GBP" balance="-258.99" />
</accounts>
Can someone priovide the syntax for the xpath property if I just want to show nodes where the type attribute is "Account"?
(is it just me, or is the MS help documentation pretty difficult to find anything helpful in ....?)
cheers
David