Hi
How to connect datagridview with datarow. I have a set of rows after selecting from a datatable.
Those rows i need to display in datagridview. Right now i'm using
liike this
foreach (DataRow dr in drs)
dtTemp.ImportRow(dr);
Adding each row to temp table and connecting that to datagridview. Is there any alternative. Beacuse i might have more than 10000 records in datarow.
thanks
venp---