nzhang
06-16-2006, 12:16 PM
I was wondering if any one knew how to grab the items in the DataSet, and store it into a multi-dimensional array?
string dataUrl = "log.xml";
string schemaUrl = "log.xsd";
DataSet ds = new DataSet();
ds.ReadXmlSchema(Server.MapPath(schemaUrl));
ds.ReadXml(Server.MapPath(dataUrl));
DataView dv = new DataView(ds.Tables[0]);
DataTable dt = dv.Table;
string dataUrl = "log.xml";
string schemaUrl = "log.xsd";
DataSet ds = new DataSet();
ds.ReadXmlSchema(Server.MapPath(schemaUrl));
ds.ReadXml(Server.MapPath(dataUrl));
DataView dv = new DataView(ds.Tables[0]);
DataTable dt = dv.Table;