I have a valid XML file being read by the following .NET C# windows service. The tag in question (u1_000) is absolutely in the element:
<book id="u1_000" category="xyz">
Is there some reason the GetElementById() does not find the Book element with the tag? - thanks
XmlDocument doc = new XmlDocument();
doc.Load("C:\\j.xml");
XmlElement ee = doc.GetElementById("U1_000");
<book id="U1_000" category="web">