October 2009 Entries
Often we would have came across a requirement where we have to filter a data table rows and copy the filtered data into a different datatable and bind the same to grid or some other data bound control. This can be achieved in several ways. One such way is given below. The initial section in the code is to create a sample data table with some sample records. Then the data table is queried with a filter condition to get collection of rows. (dtTaskList.Select("TaskEff... Once done with...