hello try this
Private Sub DataGrid1_ItemC ommand(ByVal source As Object, ByVal e As System.Web.UI.W ebControls.Data GridCommandEven tArgs) Handles DataGrid1.ItemC ommand
If e.CommandName = "hello" Then
Dim srrrr As String
srrrr = e.Item.Cells(2) .Text
End If
End Sub
hello is the string that you put on the command inside the datagrid....
Leave a comment: