Say i have these Xml tag
I want to extract all the web and topic attribute only in Title section "1"...
Thanks
VB.NET:
<Books>
<Title section ="1">
<Reference web = "[url="http://www.any.com"]www.any.com[/url]" topic = "1">
</Title>
<Title section ="1">
<Reference web = "[url="http://www.idea.com"]www.idea.com[/url]" topic = "2">
</Title>
<Title section ="2">
<Reference web = "[url="http://www.howTo.com"]www.howTo.com[/url]" topic = "3">
</Title>
<Title section ="3">
<Reference web = "[url="http://www.do.com"]www.do.com[/url]" topic = "4">
</Title>
</Books>
Thanks