liye

liye

博客园 首页 新随笔 联系 订阅 管理

2010年5月18日 #

摘要: DataTable中动态的赋值 2009-07-04 20:50 DataTable中动态的赋值 // Process Activity Data DataTable dtSession = new DataTable("sesson");//新建一个名为session的table DataRow drow; DataColumn dc; // transpose the table drow... 阅读全文
posted @ 2010-05-18 18:46 晔 阅读(3272) 评论(0) 推荐(1) 编辑

摘要: DataTable MyDataTable = new DataTable();   MyDataTable.Columns.Add(new DataColumn("学生编号", typeof(string))); MyDataTable.Columns.Add(new DataColumn("姓名", typeof(string))); MyDataTable.Columns.Add(new... 阅读全文
posted @ 2010-05-18 18:04 晔 阅读(6933) 评论(0) 推荐(1) 编辑