I've searched the forums with no luck.
What I need to do is send an email with the ID of the newly inserted items ID that is generated from SQL(isIdentity)
I was assuming that I could get this info from RadGrid1_ItemInserted but no luck.
Dim editformItem As GridEditFormInsertItem = DirectCast(e.Item, GridEditFormInsertItem)
Dim test As String = editformItem.Item("Task_Id").Text
-DataKeyNames="Task_Id"
I need the id of the inserted item.
Can someone please help.
Thank you