XML attributes
Hi!
I need to load attributes from an XML element, in a file like this:
<factura numero="000222">
<cabecera>
<emisor cif="12345687-J">
<nombre>pepe</nombre>
...
I know how to acces to "numero", in a way like this:
myElement = doc.DocumentElement;
attrColl = myElement.Attributes;
attr = attrColl["numero"];
How must I do to obtain cif?
Regards
-------------------------------
World only exists into your mind.
|