Using Dataview RowFilter (Syntax) in Asp.net C#
Lets say we have a datatable, we want to select rows that meet certain criteria, then we can use Dataview.Rowfilter.
For example we have a datatable having empid column, we want the row whose empid is 8.
dataView.RowFilter = "empid = 8"; Other examples are dataView.RowFilter = "EmpName = 'Pankaj'" ; dataView.RowFilter = "Date = #12/08/2000#" ; Comparision dataView.RowFilter = "Date>=" + "#" + startdate + "#" + "And Date <=" + "#" + enddate + "#"; You can find other examples at: http://www.csharp-examples.net/dataview-rowfilter/
After reading you site, Your site is very useful for me .I bookmarked your site!
I am been engaged 10 years on the Free finance personal software If you have some questions, please get in touch with me.