C# and iOS Programming
Tips, tricks, snipplets, code examples
Showing posts with label
DataBinding
.
Show all posts
Showing posts with label
DataBinding
.
Show all posts
Thursday, February 18, 2010
DataBinding an Arbitrary XML String to an ASP.Net GridViev
DataSet ds = new DataSet();
string xml = GetSomeXMLFromWherever();
ds.ReadXml(new StringReader(xml), XmlReadMode.InferSchema);
GridView1.DataSource = ds;
GridView1.DataBind();
Older Posts
Home
Subscribe to:
Posts (Atom)