DUPLICATE of http://stackoverflow.com/questions/665751/deletion-from-datatable
hi,
i have a Datatable in my code in vb.net.I need to delete rows from the datatable. The namw of my Datatable is "temptable".in my rowdeleting event of a Gridview control.i wrote code as follows:
In the Row_Deleting event of Gridview:
temptable.Rows.Remove(Gridview1.Datakeys(e.RowIndex).value)
But,it shows an error as follows:
"Cannot cast System.Int32 to System.Data.Datarow".Anyone can help me?