How to access the column name in server side from the following grid when the user clicks the link button .
<telerik:RadGrid ID="rdGrdBudgetStatusSummary" runat="server" AutoGenerateColumns="false" EnableLinqExpressions="false" Skin="Office2007" CssClass="radgrid" GridLines="None" AllowSorting="true" OnSortCommand="GridRebind" PageSize="15" ShowFooter="true" OnExcelMLExportRowCreated="RadGrid1_ExcelMLExportRowCreated" OnItemCommand="RadGrid1_ItemCommand" OnItemCreated="RadGrid1_ItemCreated" AllowFilteringByColumn="true"> <GroupingSettings CaseSensitive="false" /> <MasterTableView AllowPaging="true" Width="100%" TableLayout="Fixed" DataKeyNames="rspusr,Approved,Submitted"> <PagerStyle Mode="NextPrev" AlwaysVisible="true" HorizontalAlign="Left" /> <Columns> <telerik:GridBoundColumn HeaderText="Responsible User" DataField="ResponsibleUser" UniqueName="ResponsibleUser" FooterText="Total " Visible="true"> <HeaderStyle Width="130px" HorizontalAlign="Center" /> <ItemStyle Width="130px" /> <FooterStyle HorizontalAlign="right" /> </telerik:GridBoundColumn> <telerik:GridTemplateColumn SortExpression="Approved" Aggregate="Sum" HeaderText="Approved" UniqueName="Approved" DataField="Approved" FooterAggregateFormatString="{0}" ReadOnly="true" DataType="System.String"> <ItemTemplate> <asp:LinkButton ID="lnkBtnApproved" CommandName="ReDirect" runat="server" Text='<%#Eval("Approved")%>'> </asp:LinkButton> </ItemTemplate> <HeaderStyle Width="100px" HorizontalAlign="Center" /> <ItemStyle HorizontalAlign="Right" VerticalAlign="Middle" /> <FooterStyle HorizontalAlign="right" /> </telerik:GridTemplateColumn> <telerik:GridTemplateColumn SortExpression="Submitted" Aggregate="Sum" HeaderText="Submitted" DataField="Submitted" UniqueName="Submitted" Visible="true" FooterAggregateFormatString="{0}"> <ItemTemplate> <asp:LinkButton ID="lnkBtnSubmitted" runat="server" Text='<%#Eval("Submitted")%>' CommandName="ReDirect"> </asp:LinkButton> </ItemTemplate> <HeaderStyle Width="130px" HorizontalAlign="Center" /> <ItemStyle HorizontalAlign="Right" VerticalAlign="Middle" /> <FooterStyle HorizontalAlign="right" /> </telerik:GridTemplateColumn>