M
Michael Soza
Hi all, I need a little help with the use of that method. I have an xml of
this kind:
<?xml version="1.0"?>
<!DOCTYPE raiz[
<!ELEMENT raiz (docu,code)>
<!ELEMENT docu (#PCDATA)>
<!ELEMENT code (#PCDATA)>
<!ATTLIST docu ID ID #REQUIRED>
<!ATTLIST code ID ID #REQUIRED>
<!ATTLIST code Name CDATA #REQUIRED>
]>
<raiz>
<docu ID="a">hola</docu>
<code ID="b" Name="Tierra">Mundo</code>
</raiz>
when I search elements with tag docu works : navigator.MoveToId("a")->true
when I search elements with tag code doesn't work :
navigator.MoveToId("b")->false
the cuestion is WHY?????
this kind:
<?xml version="1.0"?>
<!DOCTYPE raiz[
<!ELEMENT raiz (docu,code)>
<!ELEMENT docu (#PCDATA)>
<!ELEMENT code (#PCDATA)>
<!ATTLIST docu ID ID #REQUIRED>
<!ATTLIST code ID ID #REQUIRED>
<!ATTLIST code Name CDATA #REQUIRED>
]>
<raiz>
<docu ID="a">hola</docu>
<code ID="b" Name="Tierra">Mundo</code>
</raiz>
when I search elements with tag docu works : navigator.MoveToId("a")->true
when I search elements with tag code doesn't work :
navigator.MoveToId("b")->false
the cuestion is WHY?????