A.把SqlCommand对象的CommandType属性改为CommandTypText;CommandText属性改为:SELECT*FROMprocProductListORDERBYProductNamDESC;绑定DataGrid数据源来自datatable对象
B.基于DataTable对象创建一个新的DataView对象;将DataView对象的排序属性设置为ProductNamDESC;绑定DataGrid数据源来自datatable对象
C.将DataGrid的AllowSorting属性设置为真;设置DataGridColumn的SortExpression属性使ProductName显示为ProductNamDESC;绑定DataGrid数据源来自datatable对象
D.将DataTable对象的DisplayExpression属性设置为ORDERBYProductNamDESC;绑定DataGrid数据源来自datatable对象