looping in Xml nodes in C#
XML / XSL
4
Posts
3
Posters
0
Views
1
Watching
-
Then you'd be looking for a recursive loop.
Upcoming events: * Glasgow: Mock Objects, SQL Server CLR Integration, Reporting Services, db4o, Dependency Injection with Spring ... * Reading: Developer Day 5 Ready to Give up - Your help will be much appreciated. My website
-
I believe using the XPath expression "//*" will do the job if you mean "looping elements". -- modified at 19:32 Thursday 21st June, 2007
"We make a living by what we get, we make a life by what we give." --Winston Churchill
-
If you are searching for any type node (this includes elements, text nodes, comments, etc.) and attributes, this works:
//node()|//@*
"We make a living by what we get, we make a life by what we give." --Winston Churchill