XPath syntax to get IXMLNode ...
-
Could someone advise me on the syntax to use to get the IXMLNode whose attribute id="abc" so in the XPath expression used to SelectSinglenode you would specifiy the @id="abc" or whatever the correct syntax is so as to select the Node whose attribute id has the value == "abc". Thanks.
-
Could someone advise me on the syntax to use to get the IXMLNode whose attribute id="abc" so in the XPath expression used to SelectSinglenode you would specifiy the @id="abc" or whatever the correct syntax is so as to select the Node whose attribute id has the value == "abc". Thanks.
-
Basically, I want to locate and return any Node in the XML document which has an attribute id equal to the id I am searching for. I have been trying with XPath's such as: "//*[@id( 'abc' )]" But alas so far I have not found the correct syntax. :confused: