DataSet中利用DataTable,DataView筛选数据
摘要: thisAdapter.Fill(thisDataSet,"tb");DataTable thisTable = thisDs.Tables["tb"];DataView thisView = new DataView(thisTable); //创建DataView对象thisView.RowFilter = ....;DataGrid.DataSource = thisView;...a,使用...
阅读全文
posted @
2007-09-14 14:01 利利新书 阅读(2186) |
评论 (1) 编辑