Datatable Select() Method

前端 未结 8 1643
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-11 16:15

I have a Datagridview and the Data Source is dtCustomer I just want to filter the content of grid view based on a search text. Itried the follow

8条回答
  •  眼角桃花
    2020-12-11 16:29

    You could try using a DataView (code not tested) -

    DataView dv = new DataView(dtSearch);
    dv.RowFilter = "cust_Name like '" + txtSearch.Text + "%'";
    grvCustomer.DataSource = dv;
    

提交回复
热议问题