ASP.net里 DataRowView里的数据怎样添加到 DataView里?在线跪等!
ASP.net里 DataRowView里的数据怎样添加到 DataView里?在线跪等!
日期:2016-08-04 15:42:38 人气:1
/** 定义一个名字为table的DataTable,并加入名字为column的列,也填充了一条数据 */ DataTable table = new DataTable("table"); DataColumn col= new DataColumn("column",Type.GetType("System.String"));