I am using VS 2005.
My dataset read this XML
<Rows xmlns:xsi=" <Row id="12345678890" peopleid="12345">
<Field id="F1" type="Varchar">Val1</Field>
<Field id="F2" type="Varchar">Val2</Field>
<Field id="F3" type="Varchar">Val3</Field>
</Row>
</Rows>
I bound the dataset to the datagridview, but it only shows the id and peopleid from the row.
How could I through code access the F1, F2, F3 values?
My dataset read this XML
<Rows xmlns:xsi=" <Row id="12345678890" peopleid="12345">
<Field id="F1" type="Varchar">Val1</Field>
<Field id="F2" type="Varchar">Val2</Field>
<Field id="F3" type="Varchar">Val3</Field>
</Row>
</Rows>
I bound the dataset to the datagridview, but it only shows the id and peopleid from the row.
How could I through code access the F1, F2, F3 values?