hai friends helpme this is sailaja,
i need to sort the datagrid, with respect to enter data in textbox which was placed out of grid
i need to sort the datagrid, with respect to enter data in textbox which was placed out of grid
DataView dv = new DataView(datatable);
dv.RowFilter = "columnname='" + urValue + "'";
return dv;
Comment