how to add datatable filtering Search to a asp.net
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Pradeep ShetPosted Jul 18, 2014, 1:10 AM
If you want to filter the data in datatable then use
DataTable dt= new DataTable();
DataRow[] dr = dt.Select("condition");
Once you get the collection of DataRow, convert it into DataTable again
dr.CopyToDataTable();
Hope this solves your problem. Mark it answered if you got what I suggested.
Lakshmanan Sethu SankaranarayanPosted Jul 16, 2014, 4:21 AM
check this link
http://stackoverflow.com/questions/3362260/how-to-make-c-sharp-datatable-filter