hi,how can i get XML node name
C#
2
Posts
2
Posters
0
Views
1
Watching
-
hi, i declare one xmlnode path in my C#.net application. i want the next node name. ex. val kkk i give path for for reading the value of and i want to know the next node name(i.e. "hi"). how can i get that in c#.net plz help me
Thanks
-
hi, i declare one xmlnode path in my C#.net application. i want the next node name. ex. val kkk i give path for for reading the value of and i want to know the next node name(i.e. "hi"). how can i get that in c#.net plz help me
Thanks
Did you try using the NextSibling[^] property? Once you have reference to the <code>XmlNode</code> representing comm, just do
XmlNode nextNode = node.NextSibling;
Regards Senthil _____________________________ My Blog | My Articles | WinMacro