ataTable dt = new DataTable();
dt.Columns.Add(new DataColumn("URL", typeof(string)) );
dt.Columns.Add(new DataColumn("DocName", typeof(string)) );
DataRow dr = dt.NewRow();
dr["URL"] = "http://www.google.com";
dr["DocName"] = "google";
dt.Rows.Add(dr);
dr = dt.NewRow();
dr["URL"] = "http://www.yahoo.com";
dr["DocName"] = "yahoo";
dt.Rows.Add(dr);
Files.DataSource = dt.DefaultView;
Files.DataBind();
上述代码演示了如何在DataTable中增加DataRow。
本文转自Jake Lin博客园博客,原文链接:http://www.cnblogs.com/procoder/archive/2010/03/22/ASP-Dot-NET-DataTable-DataRow.html,如需转载请自行联系原作者