i have created the code like this
<asp:GridView ID="grd" runat="server" AutoGenerateCol umns="False"
onselectedindex changed="grd_Se lectedIndexChan ged" Width="100%">
<Columns>
<asp:BoundFie ld DataField="ID" HeaderText="Bud get ID" />
<asp:CommandFie ld HeaderText="Del ete" ShowDeleteButto n="True" />
</Columns>
</asp:GridView>
a show delete field will appeat at run time.
i want to delete the row from the gridview.can anybody tell me how to do it?when i will click on the delete field at the execution time.
<asp:GridView ID="grd" runat="server" AutoGenerateCol umns="False"
onselectedindex changed="grd_Se lectedIndexChan ged" Width="100%">
<Columns>
<asp:BoundFie ld DataField="ID" HeaderText="Bud get ID" />
<asp:CommandFie ld HeaderText="Del ete" ShowDeleteButto n="True" />
</Columns>
</asp:GridView>
a show delete field will appeat at run time.
i want to delete the row from the gridview.can anybody tell me how to do it?when i will click on the delete field at the execution time.
Comment