Hello,
I have an xml file with the following snippet:
....... some tags
<ListItems>
<item> 1 </item>
<item> 2 </item>
<item> 3 </item>
</ListItems>
I need to populate a dataset containing a table with one column "Item"
with rows containining data from the item tag....i.e. 1,2,3.
if i Create a DataTable named "ListItems" and a column element in it
named "item" then only the first value is read.
if i Create a DataTable named "item" then no values are read but
exactly the same no. of rows are created in the grid having this
dataset as the source..... this is definitely a good sign as now I need
to get the data somehow.... but HOW?
Please help!
Thanks,
Vinit