Ciao a tutti,
ho un file xml così strutturato
<news data="30/05/2002">TEST1</news>
<news data="02/05/2002">TEST2"</news>
<news data="02/04/2002">TEST3</news>
<news data="02/03/2002">TEST4</news>
ho scritto la seguente pagina per la lettura
<%
Set MyXML = Server.CreateObject("Microsoft.XMLDOM")
MyXML.Async = False
MyXML.Load Server.MapPath("news.xml")
dim news
set news = MyXML.getElementsByTagName("news")
Dim i
i = 0
For i = 0 To news.length - 1
Response.Write news(i).Text & "
"
Response.Write news(i).getAttribute("data") & "
" & "
"
Next
%>
ma quando richiamo la pagina viene visualizzata bianca![]()