Hi guys,
I have the following XML structure :
<Categories>
<Category ID="430009746">Crime</Category>
<Category ID="430010217">Headline Channel</Category>
</Categories>
I can extract the "Crime", "Headline Channel" via :
Set NodeList = ANArticleNode.selectNodes("Categories/Category")
For Each Node In NodeList
response.Write(Node.text)
Next
I just don't know at all how I extract the value of the "ID" in the Category tag?
So basically the "430009746", "430010217" values.
I would so appreciate your help on this - thank you in advance
Gia
I have the following XML structure :
<Categories>
<Category ID="430009746">Crime</Category>
<Category ID="430010217">Headline Channel</Category>
</Categories>
I can extract the "Crime", "Headline Channel" via :
Set NodeList = ANArticleNode.selectNodes("Categories/Category")
For Each Node In NodeList
response.Write(Node.text)
Next
I just don't know at all how I extract the value of the "ID" in the Category tag?
So basically the "430009746", "430010217" values.
I would so appreciate your help on this - thank you in advance
Gia