asp.net 操作xml 并输出

System.IO.StringReader XmlIR = new System.IO.StringReader(XML);

ds.ReadXml(XmlIR,XmlReadMode.ReadSchema);

for (int ii = 0; ii < ds.Tables[0].Rows.Count; ii++)
{
txt=ds.Tables[0].Rows[ii][“OpenValue”].ToString();
}

Response.Write(txt);