getting element [modified]
-
I am looking to get the following information from my XML: TestColumID Assignment Delta System.Double OutputColumn Single Adherence Delta ReportDatabaseColumnAttribute If I want to print ColumnID (not the value, but the word ColumnID) from my XML tags how do I do that? -- modified at 18:36 Thursday 25th October, 2007
-
I am looking to get the following information from my XML: TestColumID Assignment Delta System.Double OutputColumn Single Adherence Delta ReportDatabaseColumnAttribute If I want to print ColumnID (not the value, but the word ColumnID) from my XML tags how do I do that? -- modified at 18:36 Thursday 25th October, 2007
How are you parsing the XML?
"We make a living by what we get, we make a life by what we give." --Winston Churchill
-
How are you parsing the XML?
"We make a living by what we get, we make a life by what we give." --Winston Churchill
-
I am looking to get the following information from my XML: TestColumID Assignment Delta System.Double OutputColumn Single Adherence Delta ReportDatabaseColumnAttribute If I want to print ColumnID (not the value, but the word ColumnID) from my XML tags how do I do that? -- modified at 18:36 Thursday 25th October, 2007
-
Your context node is attribute; thus, you're printing its name. You want to print out the children elements name. It you just want to print out the first child's name: Given this XML document: TestColumID Assignment Delta System.Double OutputColumn Single Adherence Delta ReportDatabaseColumnAttribute here is an example of what you are trying to do except it prints out all children names:
"We make a living by what we get, we make a life by what we give." --Winston Churchill