Cari amici,
ho un piccolo problema

Sono riuscita a trovare dove posso recuperare prezzo del euro in diverse monete



solo che non riesco a leggere una parte del file xml

il codice è questo

codice:
<%

rssURL =http://www.bankofcanada.ca/databank/client_output/7833.xml

'Creo l'oggetto DOM XML

Set objXML = Server.CreateObject("msxml2.DOMDocument.3.0")

'Imposto le proprietà dell'oggetto

objXML.async = false

objXML.setProperty "ServerHTTPRequest", True

objXML.validateOnParse =false

objXML.preserveWhiteSpace = false

'Carico il file RSS dalla URL

rssFile = objXML.Load(rssURL)



'Se ci sono errori stampo a video

If Not rssFile Then

Response.write "ERRORE..."

'Se NON ci sono errori proseguo...

Else

'Recupero i dati dai nodi Item (e sotto nodi)

Set objNodeList = objXML.getElementsByTagName("Currency_name") 



 For Each objNode In objNodeList

For Each objNode2 In objNode.childNodes



Select Case objNode2.nodeName







Case "Observation_data"

strv1 = objNode2.firstChild.nodevalue

Case "Observation_data"

strv2 = objNode2.firstChild.nodevalue

Case "Observation_data"

strv3 = objNode2.firstChild.nodevalue

End Select

Next

Response.write strv1&" - "&strv2&" - "&strv3&"
"



 'azzero tutto per il prossimo passaggio

strv1 = ""

strv2 = ""

strv3 = ""

'end if

Next

%>
in questo script vorrei recuperare la cifra che è su strv2 o strv3

il problema è che ci sono tre targe Observation_data uguale

Aiutto!