DataColumn dc = null; dc = tblDatas.Columns.Add("ID", Type.GetType("System.Int32")); dc.AutoIncrement = true;//自動增 " /> 国产精品极品国产中出,国产精品国产三级国产aⅴ浪潮,国产精品自在在线

色尼玛亚洲综合影院,亚洲3atv精品一区二区三区,麻豆freexxxx性91精品,欧美在线91

asp DataTable添加列和行的三種方法

復制代碼 代碼如下:
#region 方法一:
DataTable tblDatas = new DataTable("Datas");

DataColumn dc = null;
dc = tblDatas.Columns.Add("ID", Type.GetType("System.Int32"));
dc.AutoIncrement = true;//自動增加
dc.AutoIncrementSeed = 1;//起始為1
dc.AutoIncrementStep = 1;//步長為1
dc.AllowDBNull = false;

dc = tblDatas.Columns.Add("Product", Type.GetType("System.String"));
dc = tblDatas.Columns.Add("Version", Type.GetType("System.String"));
dc = tblDatas.Columns.Add("Description", Type.GetType("System.String"));

DataRow newRow;
newRow = tblDatas.NewRow();
newRow["Product"] = "大話西游";
newRow["Version"] = "2.0";
newRow["Description"] = "我很喜歡";
tblDatas.Rows.Add(newRow);

newRow = tblDatas.NewRow();
newRow["Product"] = "夢幻西游";
newRow["Version"] = "3.0";
newRow["Description"] = "比大話更幼稚";
tblDatas.Rows.Add(newRow);
#endregion


復制代碼 代碼如下:
#region 方法二:
DataTable tblDatas = new DataTable("Datas");

tblDatas.Columns.Add("ID", Type.GetType("System.Int32"));
tblDatas.Columns[0].AutoIncrement = true;
tblDatas.Columns[0].AutoIncrementSeed = 1;
tblDatas.Columns[0].AutoIncrementStep = 1;

tblDatas.Columns.Add("Product", Type.GetType("System.String"));
tblDatas.Columns.Add("Version", Type.GetType("System.String"));
tblDatas.Columns.Add("Description", Type.GetType("System.String"));

tblDatas.Rows.Add(new object[] { null, "a", "b", "c" });
tblDatas.Rows.Add(new object[] { null, "a", "b", "c" });
tblDatas.Rows.Add(new object[] { null, "a", "b", "c" });
tblDatas.Rows.Add(new object[] { null, "a", "b", "c" });
tblDatas.Rows.Add(new object[] { null, "a", "b", "c" });
#endregion

復制代碼 代碼如下:
#region 方法三:
DataTable table = new DataTable();

//創建table的第一列
DataColumn priceColumn = new DataColumn();
priceColumn.DataType = System.Type.GetType("System.Decimal");//該列的數據類型
priceColumn.ColumnName = "price";//該列得名稱
priceColumn.DefaultValue = 50;//該列得默認值

// 創建table的第二列
DataColumn taxColumn = new DataColumn();
taxColumn.DataType = System.Type.GetType("System.Decimal");
taxColumn.ColumnName = "tax";//列名
taxColumn.Expression = "price * 0.0862";//設置該列得表達式,用于計算列中的值或創建聚合列

// 創建table的第三列
DataColumn totalColumn = new DataColumn();
totalColumn.DataType = System.Type.GetType("System.Decimal");
totalColumn.ColumnName = "total";
totalColumn.Expression = "price + tax";//該列的表達式,是第一列和第二列值得和

// 將所有的列添加到table上
table.Columns.Add(priceColumn);
table.Columns.Add(taxColumn);
table.Columns.Add(totalColumn);

//創建一行
DataRow row = table.NewRow();
table.Rows.Add(row);//將此行添加到table中

//將table放在試圖中
DataView view = new DataView(table);

//綁定到DataGrid
dg.DataSource = view;
dg.DataBind();
#endregion

AspNet技術asp DataTable添加列和行的三種方法,轉載需保留來源!

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

主站蜘蛛池模板: 惠水县| 璧山县| 华宁县| 合作市| 南江县| 瓦房店市| 泰州市| 澄城县| 南江县| 郎溪县| 河北省| 遵义县| 增城市| 广宗县| 潜江市| 锡林浩特市| 平果县| 锦州市| 麻栗坡县| 锡林浩特市| 兴宁市| 屏山县| 五原县| 桦川县| 开封县| 英德市| 莆田市| 秦皇岛市| 原平市| 八宿县| 疏附县| 科尔| 三台县| 伊金霍洛旗| 康平县| 政和县| 连平县| 沙湾县| 青海省| 天全县| 泾源县|