problem with dataview
-
after filtering dataview, when i retrive the dataview by a loop. i get the orginal dataview contents. but if i use it as a datasource of a datagrid then i can found the filtered data.plz fix the problem...
-
after filtering dataview, when i retrive the dataview by a loop. i get the orginal dataview contents. but if i use it as a datasource of a datagrid then i can found the filtered data.plz fix the problem...
-
try the following code int i=0; IEnumerator ienm = dtv.GetEnumerator(); while(ienm.MoveNext()) { MessageBox.Show(dtv[i].Row["column name"].ToString()); i++; } here dtv is filtered dataview rahul -- modified at 5:21 Monday 29th May, 2006
thanks for ur help. but now i want to put this values of dataview in a datatable.but how i can not do it. cause i am new in c#.plz help me...