Ciao a tutti ho un file xml:
<item>
<id>1</id>
<titolo>....</titolo>
....
</item>
lo leggo così
Dim objxmldatadoc As New XmlDataDocument
objxmldatadoc.Load("http://.../feed.asp")
Dim objNode As XmlNode
Dim strResults As String
Dim colElements As XmlNodeList
colElements = objxmldatadoc.GetElementsByTagName("titolo")
For Each objNode In colElements
strResults &= objNode.FirstChild().Value & "
"
Next
lblOutput.Text = strResults
ma riesco solo a recuperare uno dei due tag e non entrambi....
ciao e grazie

Rispondi quotando
