binding a set of datarows to datagridview
I have tried the following code, but nothing is displayed in datagridview. Any Suggestions? string strFilterOption = "dtcolnPurchaseProductExpProductNo=270"; dgvProductExp.DataSource = dtPurchaseProductExp.Select(strFilterOption); From MSDN The DataGridView class supports the standard Windows Forms data-binding model. This means the data source can be of any type that implements one of the following interfaces: The IList interface, including one-dimensional arrays. The IListSource interface, such as the DataTable and DataSet classes. The IBindingList interface, such as the BindingList class.