Continua a non farmi vedere niente senza darmi nemmeno errori.

Io ho IE 6.0 Sp2



Che mi resta da fare??????

Se apro news.xml vedo che in effetti dentro c'è qualcosa...... ma se richiamo la pagina con questo codice come mi hai consigliato tu non mi visualizza un gra PIFFERO!!

<%
Set objXML = Server.CreateObject("Msxml2.DOMDocument")
'Set objData = Server.CreateObject("Msxml2.DOMDocument")

objXML.async = False
objXML.load(Server.MapPath("news.xml"))

Set objData = objXML.getElementsByTagName("news")

For i = 0 To (objData.length - 1)
Response.Write "

"
Response.Write objData.item(i).Text
Response.Write "</p>"
Next

set objData = nothing
Set objXML = nothing
%>