hi
I have a checkbox implemented in the radgrid. I have also created 2 objects for insert and delete and both of these objects takes in a parameter productid for insertion and delete.
I want to insert when a product is checked and delete when a product is unchecked. i am stuck here. Thanks
I have a checkbox implemented in the radgrid. I have also created 2 objects for insert and delete and both of these objects takes in a parameter productid for insertion and delete.
I want to insert when a product is checked and delete when a product is unchecked. i am stuck here. Thanks
Protected
Sub CheckBox1_CheckedChanged(ByVal sender As Object, ByVal e As EventArgs)
Dim item As GridDataItem = DirectCast(TryCast(sender, CheckBox).NamingContainer, GridDataItem)
item(
"ProductID").Text
End Sub