int rindex=(((GridViewRow) (((LinkButton)(sender)).Parent.BindingContainer))).RowIndex
'to get the row index Dim index As Integer = Convert.ToInt32(e.CommandArgument) 'to get the row data Dim bug As GridViewRow = CType((e.CommandSource).Rows(index), GridViewRow) 'to get a particular data in the column Dim wee As String = bug.Cells(0).Text
Login to post response