Read a list of nodes from xml file
Hi any please help,
I have a xml file. this look like
<pre lang="xml"><Worksheet ss:Name="Combined Account Statement">
-
<Table
ss:ExpandedColumnCount="15"
ss:ExpandedRowCount="96"
x:FullColumns="1"
x:FullRows="1"></pre></Table></Workbook>
I want to read the list of nodes from the xml file. I cant find the nodelist. Because of each xml tag have applied styles.
<pre
lang="sql">if
(xmlDoc.DocumentElement.SelectNodes("Workbook/Worksheet[ss:Name='Combined
Account Statement']").Count > 0)
MainNodeList =
xmlDoc.DocumentElement.SelectNodes("Workbook/Worksheet[ss:Name='Combined
Account Statement']");</pre>
How can i read the list of nodes form xml files.