Ciao,

utilizzo questo script per leggere il contenuto di un xml:

<%
var xmldom = new ActiveXObject("Microsoft.XMLDOM");

xmldom.async = false;
xmldom.load(Server.MapPath("prova.xml"));

var nome = xmldom.getElementsByTagName("product/category/merchant");

for (var i=0; i<nome.length; i++)
{
with (Response)
{

//if (nome[i].text == "T-Shirt / T-Shirt Manica Corta") {
%>

<%=nome[i].text%>


<%
//}
}
}
%>


solo che mi restituisce tuti i dati in esso presenti, compresi i doppioni. Come possoo fare secondo voi per evitare questo inconveniente?

Grazie