In this articles describes how to use confirm message before delete my data in c# .net. Here I have use confirmation dialog box before delete a data. Once you click the delete button it shows confirmation message then if the user select “ok “ then delete method will be call, else if “cancel” nothing should be happens.
In client side(Default.aspx)
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="false" DataKeyNames="Id" OnRowCommand="GridView1_RowCommand" BorderWidth="1px" CellPadding="3" CellSpacing="2" >
<Columns>
<asp:TemplateField>
<ItemTemplate>
<asp:LinkButton ID="lnkdelete" OnClientClick="returnconfirm('are you want to delete')" runat="server" CommandArgument='<%# Eval("Id") %>' Text="Delete" CommandName="lnkDelete"
ForeColor="#BC4510" />
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
In Code behind(Default.aspx.cs)
protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
{
if (e.CommandName == "lnkDelete")
{
int employeeID = Convert.ToInt32(e.CommandArgument);
DeleteEmployee(employeeID);
}
}
Post your comments / questions
Recent Article
- How to fix HAXM is not installed |in Android Studio
- How to fix CMOS Checksum Error in Computer or Laptop | SOLVED
- Reactivating windows after a Hardware change on PC or Laptop
- FIXED: Windows reported that the hardware of your device has changed. Error code :0xc004F211
- "redirect" is not defined pylance("reportUndefinedVariable)
- This action cannot be completed because the file is open in SQL Server(SQLEXPRESS) - FIXED
- Unicode error 'unicodeescape' codec can't decode bytes in position 2-3: truncated UXXXXXXXX escape
- Could not find the 'angular-devkit/build-angular:dev-server' builder's node package | Angular Error
Related Article