I have a grid in which i have two template fields with link buttons, on row databound of the grid event i want to get the client id of only these two columns, i want to apply some javascript for only these two columns.
Dim singleClickButton As LinkButton = DirectCast(e.Row.Cells(3).Controls(0), LinkButton)
but im not able to get the clientid of these link button controls
my javascript is being applied to complete row, which i dont want. i just want to apply this java script to particular columns.
any ideas as to where im going wrong.