I want to get list of all parent nodes for particular child using XmlDocument. But i dont want to use the LINQ. My input is :
<parent1>
<parent2>
<parent3>
<child1>
Child Content.
</child1>
</parent3>
</parent2>
</parent1>
now i want take all the parent nodes of an child1. Can anyone help me..