Data row filter for a dataview could be set like this
oDataView.RowFilter = "TABLENAME = 1"
If you would like to set multiple filters then
oDataView.RowFilter = oDataView.RowFilter + '"AND POSTTITLE LIKE " & "'%" & txtSearch.Text & "%'"
Here I am using the clause LIKE , like in the sql query
|