Posted on: 7/28/2015 2:01:57 PM | Views : 1111

code for html button
<button class="btn btn-primary btn-xs" data-title="Edit" data-toggle="modal" data-target="#edit" ><span class="glyphicon glyphicon-pencil"></span></button> how to apply it in asp button in grid-view
<asp:GridView ID="gridusers" runat="server" CssClass="table table-bordered text-nowrap" OnSelectedIndexChanged="gridusers_SelectedIndexChanged" OnRowDeleting="gridusers_RowDeleting" > <Columns> <asp:CommandField ButtonType="Button" ControlStyle-CssClass="btn btn-primary" HeaderText="Edit" ShowHeader="True" ShowSelectButton="True" /> </asp:CommandField> </Columns> <SelectedRowStyle BackColor="#D1DDF1" ForeColor="#333333" /> </asp:GridVi ...

Go to the complete details ...