I have a Telerik GridView which contains several columns of which a few columns are link-buttons. I want to access the text of that link button upon clicking on it in code behind. I want to access only the particular column text which is clicked in code behind. My code is follows
<telerik:gridtemplatecolumn
datafield="EmployeeHRId"
filtercontrolalttext="Filter EmployeeHRId column"
headertext="Employee HR ID"
sortexpression="EmployeeHRId"
uniquename="EmployeeHRId">
<ItemTemplate>
<asp:LinkButton ID="LBEmpHRId" runat="server"
EmpHRId='<%#Eval("EmployeeHRId") %>'
CssClass="EmpHrIdCss">
<%#Eval("EmployeeHRId")%>
</asp:LinkButton>
</ItemTemplate>
</telerik:gridtemplatecolumn>
Please help me with this