0

我有一个table名为totalnames.This 表的列有 10 行。

现在我想在我的网页中使用复选框为这 10 行动态创建表。请发送一些好的示例。

4

1 回答 1

0

示例代码:动态创建表、添加列、添加行

(1) create a new DataTable 
    DataTable dt = new DataTable ("Table_AX"); 

(2) Add columns to the DataTable 
    // Method 1 
    dt.Columns.Add ("column0", System.Type.GetType ("System.String")); 
    // Method 2 
    DataColumn dc = new DataColumn ("column1", System.Type.GetType ("System.Boolean")); 
    dt.Columns.Add (dc); 

(3) to add rows to the DataTable 
    // Initialize the row 
    DataRow dr = dt.NewRow (); 
    dr ["column0"] = "AX"; 
    dr ["column1"] = true; 
    dt.Rows.Add (dr); 
    // Doesn't initialize the row 
    DataRow dr1 = dt.NewRow (); 
    dt.Rows.Add (dr1); 

如果要复制 DataTable 包含数据,请尝试  

DataTable dtNew = dt.Copy (); 
于 2012-08-01T07:29:48.420 回答