Hi All,
I have a returned dataset with 4 different tables in the dataset. I need to add 1 new column in one of the table in the dataset. And I sort that table. Then I need to bind the whole dataset with a data repeater.
Could someone help me how to accomplish this?
Thanks so much
Loading
Mahesh ChandPosted Aug 28, 2007, 10:02 AM
Here is the pseudo code:
1. Create a DataColumn with column name, title and data type
2. Add to a table using myDataSet.Tables["MyTableName"].Columns.Add(myDataColumn);
3. Create a DataView from the DataTable by using DefaultView property
4. User Sort property of DataView to sort the results