Show success after inserting a value without using label (using java script)

In this blog we will know how to show success after inserting a value without using label (using java script)

 

 

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Insert_success_javascript._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>

    <script type="text/javascript">

    function Display(name)

    {

    alert(name + ':::Inserted successfully');

    }

</script>

</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" />

    <asp:Label ID="lblName" runat="server" Text=""></asp:Label>

    </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_success_javascript

{

    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);

          

            int result = com.ExecuteNonQuery();

            if (result == 1)

            {

                ScriptManager.RegisterStartupScript(this, this.GetType(), "ShowSuccess", "javascript:Display('" + txtname.Text + "')", true);

            }

            com.Dispose();

            con.Close();

            clear();

        }

        void clear()

        {

            txtname.Text = "";

            txtaddress.Text = "";

            txtsal.Text = "";

        }

    }

}

 

 

 

Thanks for reading