DataSet
dsLookup.ReadXml(response.GetResponseStream());
dataGridView1.DataSource = dsLookup.Tables[0];
The problem is, it reads down to this line then stops:
- <valuation db="201202" mileage="110000">
even if i try to go past and display into a text field like below it still doesn't read past that problem line? is there a way to bypass the line above?
value_retailTextBox.Text = dsLookup.Tables[0].Rows[0][5].ToString();