my xml is like below
<Expression>
<Field>X</Field>
<Formula>a+b</Formula>
</Expression>
<Expression>
<Field>Y</Field>
<Formula>a-b</Formula>
</Expression>
<Expression>
<Field>Z</Field>
<Formula>a*b</Formula>
</Expression>
my c# page
DataSet ds = new DataSet();
ds.ReadXml(@"C:\\Test.xml");
GridView1.DataSource = ds;
GridView1.DataMember = ds.Tables[0].ToString();
GridView1.DataBind();
it keeps showing me error:
There are multiple root elements. Line 6, position 4.