Hello, please I was wondering if someone can please help as its quite urgent. I need to convert the structue of an xml file to another xml structure so that I can bind it to a asp.net treeview control (i'm a c# developer). I noticed the asp.net treeview control accepts a transform file or xpath expression and am wondering if some one knows of a solution that will work please: From
<Skeleton>
<Category>Carto</Category>
<SubCategoryName>ET-ET-RS23</SubCategoryName>
<Filename>V-01.XML</Filename>
<XmlDefinition>SKELETON</XmlDefinition>
</Skeleton>
<Skeleton>
<Category>Carto
<SubCategoryName>ET-ET-RS23
<Filename>V-01.XML
<XmlDefinition><SKELETON /></XmlDefinition>
</Filename>
</SubCategoryName>
</Category>
</Skeleton>
Basically the I want to have a nested tree structure so I can simply bind to my treeview control. So Category contains SubCategoryName and that contains Filename and that contains xmldefinition
sorry I hope this makes sense, thank you