Hi
I want Edit Button at the end of Gridview. I am trying below code but not working
<div class="table-responsive"> <asp:GridView ID="grdPlanning" class="table table-bordered" runat="server" OnRowDataBound="gr_RowDataBound" OnRowCommand="grdPlanning_RowCommand" DataKeyNames="BookID" AutoGenerateEditButton="false"> <columns> <asp:commandfield showeditbutton="True"> </asp:commandfield> </columns> </asp:GridView> </div>
Thanks