i got this case, i get all the elements on a xmlnodelist using the function getelementesbytagname(""), but sometimes i can had something like this.
<?xml version="1.0" encoding="UTF-8" ?>
<Element xsi:schemaLocation="http://localhost/AML/CaseInvestigationMangement/Moduli/XmlImportControls/xsdBorrow.xsd xsd2009027_kor21.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<nodo>
<nombre>nodo1</nombre>
<dato>1</dato>
<otronodo>
<nombre>nododentrodenodo</nombre>
<dato2>23</dato2>
</otronodo>
</nodo>
<nodo>
...
</nodo>
</Element>
if y search all the nodes by the name "nombre" well i get the nodo nombre and the otronodo nombre.
can i get only the name of the nodo node?