Ciao,
oggi mi sono sorti dei problemi leggendo un file xml.
Il codice di lettura di esempio lo preso in Fare Web:
in questo codice ho aggiunto:
Mi restituisce un nodo intero poi mi restituisce errore, dove sbaglio ?
Andrea
oggi mi sono sorti dei problemi leggendo un file xml.
Il codice di lettura di esempio lo preso in Fare Web:
Codice:
<html>
<head>
<title>Leggere un file XML con ASP</title>
</head>
<body>
<%
Dim objXmlDom
Set objXmlDom = Server.CreateObject("Microsoft.XMLDOM")
objXmlDom.async = False
objXmlDom.load Server.MapPath("database.xml")
Dim nome, cognome
Set nome = objXmlDom.getElementsByTagName("record/nome")
Set cognome = objXmlDom.getElementsByTagName("record/cognome")
Dim i
i = 0
For i = 0 To 5
Response.Write nome(i).Text & " " & cognome(i).Text & "<br>"
Next
Set nome = Nothing
Set cognome = Nothing
Set objXmlDom = Nothing
%>
</body>
</html>
in questo codice ho aggiunto:
Codice:
<html>
<head>
<title>Leggere un file XML con ASP</title>
</head>
<body>
<%
Dim objXmlDom
Set objXmlDom = Server.CreateObject("Microsoft.XMLDOM")
objXmlDom.async = False
objXmlDom.load Server.MapPath("database.xml")
Dim nome, cognome
Set nome = objXmlDom.getElementsByTagName("record/nome")
Set cognome = objXmlDom.getElementsByTagName("record/cognome")
Dim i
i = 0
For i = 0 To 5
[COLOR="Red"]nome = nome(i).Text
nome = Replace(nome,"/"," ")[/COLOR]
Response.Write nome & " " & cognome(i).Text & "<br>"
Next
Set nome = Nothing
Set cognome = Nothing
Set objXmlDom = Nothing
%>
</body>
</html>
Mi restituisce un nodo intero poi mi restituisce errore, dove sbaglio ?
Andrea