I am trying to learn C#.net and now I want delete whith gridview this is my code
<asp:GridView OnRowDeleted="catGrid_RowDeleted" ID="catGrid" runat="server" AutoGenerateColumns="False" DataSourceID="gridSqlCat" CssClass="gridStyle">
<Columns>
<asp:BoundField DataField="dor_category" HeaderText="دسته بندی ها" SortExpression="dor_category" />
<asp:ButtonField Text="حذف" />
</Columns>
</asp:GridView>
and this cs code
protected void catGrid_RowDeleted(object sender, GridViewDeletedEventArgs e)
{
}
so what should I do?