In this blog we will know how to insert data into database using confirmation dialog using Asp.Net.

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Insert_data_confirmation._Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >

<head runat="server">

<title>Untitled Page</title>

</head>

<body>

<form id="form1" runat="server">

<div>

<asp:Label ID="Label1" runat="server" Text="Name" Width="60px"></asp:Label>

<asp:TextBox ID="txtname" runat="server"></asp:TextBox><br />

<asp:Label ID="Label2" runat="server" Text="Address" Width="60px"></asp:Label>

<asp:TextBox ID="txtaddress" runat="server"></asp:TextBox><br />

<asp:Label ID="Label3" runat="server" Text="Salary" Width="60px"></asp:Label>

<asp:TextBox ID="txtsal" runat="server"></asp:TextBox><br />

</div>

<asp:Button ID="btn_insert" runat="server" onclick="btn_insert_Click"

Text="Insert" OnClientClick="return confirm('Are you sure want to insert this record?');"/>

</form>

</body>

</html>

using System;

using System.Collections;

using System.Configuration;

using System.Data;

using System.Linq;

using System.Web;

using System.Web.Security;

using System.Web.UI;

using System.Web.UI.HtmlControls;

using System.Web.UI.WebControls;

using System.Web.UI.WebControls.WebParts;

using System.Xml.Linq;

using System.Data.SqlClient;

namespace Insert_data_confirmation

{

public partial class _Default : System.Web.UI.Page

{

string strConnString = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString;

string str;

SqlCommand com;

protected void btn_insert_Click(object sender, EventArgs e)

{

SqlConnection con = new SqlConnection(strConnString);

con.Open();

com = new SqlCommand("insert into employee values(@name,@address,@sal)", con);

com.Parameters.AddWithValue("@name", txtname.Text);

com.Parameters.AddWithValue("@address", txtaddress.Text);

com.Parameters.AddWithValue("@sal", txtsal.Text);

com.ExecuteNonQuery();

com.Dispose();

con.Close();

Response.Write("Records successfully inserted");

clear();

}

void clear()

{

txtname.Text = "";

txtaddress.Text = "";

txtsal.Text = "";

}

}

}

Thanks for reading