DataRow对象数据绑定问题

DataRow对象不能直接绑定到数据显示控件,如DataGrid。需要将DataRow数据copy到DataTable中,然后绑定到dataGrid上。
代码:
            Dim dt As DataTable  =  New DataTable
            datatable2 
=  CType(Session( " Result " ), DataSet).Tables( 0 )  '数据源
            dt 
=  datatable2.Clone()  ' 复制表结构
             ' 导入数据列到数据表
            For Each dw As DataRow In datatable2.Select( " xorw=' "   +  DropDownList1.SelectedItem.Text  +   " ' "
                dt.ImportRow(dw)
            Next

            DataGrid.DataSource 
=  dt '绑定
            DataGrid.DataBind()

你可能感兴趣的:(Data)