Ramco Ramco

Ramco Ramco

  • 462
  • 2.9k
  • 408.3k

Edit button at the end of row in Gridview

Apr 30 2023 1:14 PM

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


Answers (5)