Click here to Skip to main content
Click here to Skip to main content

WCF example for inserting and displaying data from a SQL Server database using a WCF Service in ASP.NET

By , 30 Sep 2012
 

Introduction

In this article I will show you a practical example of a WCF service for inserting data into a database using ASP.NET.

Using the code

For inserting data into a database using a WCF service in ASP.NET, we have to do the following steps:

  • Create a WCF service.
  • Create a Web based application.

Part 1: Create a WCF Service

  1. Open Visual Studio 2010
  2. New WCF Service Application.
  3. Give the name for the service as Customer Service.
  4. Press OK.

Open VS 2010

After the new project CustomerService project is created.

Then you will get three files:

  • IService.cs
  • Service.svc
  • Service.svc.cs

IService.cs page:

//
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.ServiceModel.Web;
using System.Text;
using System.Collections.Generic;
using System.Runtime.Serialization;
using System.ServiceModel;

[ServiceContract]
public interface IService
{

    [OperationContract]
    List<CustomerDetails> GetCustomerDetails(string CutomerName);

    [OperationContract]
    string InsertCustomerDetails(CustomerDetails customerInfo);
}

 [DataContract]
public class CustomerDetails
{
    string CutomerName = string.Empty;
    string firstname = string.Empty;
    string lastname = string.Empty;
    string address = string.Empty;

    [DataMember]
    public string CutomerName
    {
        get { return CutomerName; }
        set { CutomerName = value; }
    }
    [DataMember]
    public string FirstName
    {
        get { return firstname; }
        set { firstname = value; }
    }
    [DataMember]
    public string LastName
    {
        get { return lastname; }
        set { lastname = value; }
    }
    [DataMember]
    public string Address
    {
        get { return address; }
        set { address = value; }
    }
}

And write the following code in the Service.cs file:

Service.cs page:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.ServiceModel.Web;
using System.Text;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Data.SqlClient;


public class Service : IService
{
    SqlConnection con = new SqlConnection(
       "Data Source=Sujeet;Initial Catalog=Register;User ID=sa;Password=123");

    public List<CustomerDetails> GetCustomerDetails(string CutomerName)
    {
        List<CustomerDetails> CustomerDetails = new List<CustomerDetails>();
        {
            con.Open();
            SqlCommand cmd = new SqlCommand(
              "select * from CustomerInfo where CutomerName Like '%'+@Name+'%'", con);
            cmd.Parameters.AddWithValue("@Name", CutomerName);
            SqlDataAdapter da = new SqlDataAdapter(cmd);
            DataTable dt = new DataTable();
            da.Fill(dt);
            if (dt.Rows.Count > 0)
            {
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    CustomerDetails customerInfo = new CustomerDetails();
                    customerInfo.CutomerName = dt.Rows[i]["CutomerName"].ToString();
                    customerInfo.FirstName = dt.Rows[i]["FirstName"].ToString();
                    customerInfo.LastName = dt.Rows[i]["LastName"].ToString();
                    customerInfo.Address = dt.Rows[i]["Address"].ToString();
                    CustomerDetails.Add(customerInfo);
                }
            }
            con.Close();
        }
        return CustomerDetails;
    }

    public string InsertCustomerDetails(CustomerDetails customerInfo)
    {
        string strMessage = string.Empty;
        con.Open();
        SqlCommand cmd = new SqlCommand("insert into CustomerInfo(CutomerName," + 
           "FirstName,LastName,Address) values(@Name,@FName,@LName,@Address)", con);
        cmd.Parameters.AddWithValue("@Name", customerInfo.CutomerName);
        cmd.Parameters.AddWithValue("@FName", customerInfo.FirstName);
        cmd.Parameters.AddWithValue("@LName", customerInfo.LastName);
        cmd.Parameters.AddWithValue("@Address", customerInfo.Address);
        int result = cmd.ExecuteNonQuery();
        if (result == 1)
        {
            strMessage = customerInfo.CutomerName + " inserted successfully";
        }
        else
        {
            strMessage = customerInfo.CutomerName + " not inserted successfully";
        }
        con.Close();
        return strMessage;
    }
}

Build your service and if successful then run your service in your browser and then you will get a URL link like below and copy that URL:

Service

In this way your WCF service builds successfully.

Part 2: Create a Web Based Application (Client)

Now create your client application in your system:

  1. Create a Website
  2. Add Service Reference to a Web Application.
  3. Select your Website.
  4. Right click on it, Add Service Reference, then enter your Service URL and click Go.
  5. Give the name for your service -> OK.
  6. Open Service Reference

  7. Then automatically a proxy will be created in your client system.
  8. Write the following code in your source code:
  9. <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title></title>
    </head>
    <body>
        <form id="form1" runat="server">
        <div>
       
            <h2  >
                <strong>Cutomer  Form</strong></h2>
       
        </div>
        <table align="center" class="style1">
            <tr>
                <td  >
                    CutomerName</td>
                <td>
                    <asp:TextBox ID="txtCutomerName" runat="server"></asp:TextBox>
                    <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server"
                        ControlToValidate="txtCutomerName" ToolTip="CutomerName Required"><imgsrc="delete.png" /></asp:RequiredFieldValidator>
                </td>
            </tr>
            <tr>
                <td  >
                    First Name</td>
                <td>
                    <asp:TextBox ID="txtfname" runat="server"></asp:TextBox>
                    <asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server"
                        ControlToValidate="txtfname" ToolTip="Firstname Required"><imgsrc="delete.png" /></asp:RequiredFieldValidator>
                </td>
            </tr>
            <tr>
                <td  >
                    Last Name</td>
                <td>
                    <asp:TextBox ID="txtlname" runat="server"></asp:TextBox>
                    <asp:RequiredFieldValidator ID="RequiredFieldValidator3" runat="server"
                        ControlToValidate="txtlname" ToolTip="Lastname Required"><imgsrc="delete.png" /></asp:RequiredFieldValidator>
                </td>
            </tr>
            <tr>
                <td  >
                    Address</td>
                <td>
                    <asp:TextBox ID="txtAddress" runat="server"></asp:TextBox>
                    <asp:RequiredFieldValidator ID="RequiredFieldValidator4" runat="server"
                        ControlToValidate="txtAddress" ToolTip="Address Required"><imgsrc="delete.png" /></asp:RequiredFieldValidator>
                </td>
            </tr>
            <tr>
                <td  >
                     </td>
                <td>
                    <asp:Button ID="btnSubmit" runat="server" Text="Submit"
                        onclick="btnSubmit_Click" />
                </td>
            </tr>
        </table>
        <table align="center" class="style3">
            <tr>
                <td>
                    <asp:Label ID="lblResult" runat="server"/>
                    <br />
                    <br />
                    <asp:GridView ID="GridView1" runat="server"BackColor="LightGoldenrodYellow"
                        BorderColor="Tan" BorderWidth="1px" CellPadding="2"ForeColor="Black"
                        GridLines="None" style="text-align: left" Width="304px">
                        <AlternatingRowStyle BackColor="PaleGoldenrod" />
                        <FooterStyle BackColor="Tan" />
                        <HeaderStyle BackColor="Tan" Font-Bold="True" />
                        <PagerStyle BackColor="PaleGoldenrod" ForeColor="DarkSlateBlue"
                            HorizontalAlign="Center" />
                        <SelectedRowStyle BackColor="DarkSlateBlue" ForeColor="GhostWhite"/>
                        <SortedAscendingCellStyle BackColor="#FAFAE7" />
                        <SortedAscendingHeaderStyle BackColor="#DAC09E" />
                        <SortedDescendingCellStyle BackColor="#E1DB9C" />
                        <SortedDescendingHeaderStyle BackColor="#C2A47B" />
                    </asp:GridView>
                </td>
            </tr>
        </table>
        </form>
        </body>
    </html>
  10. Add your service reference on the top.
  11. using ServiceReference1;
  12. Then create an object for Service Reference and use that object to call the methods from your service.
  13. Write the following code in your aspx.cs file.
Default.aspx.cs page:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Collections.Generic;
using ServiceReference1;

public partial class _Default : System.Web.UI.Page
{
    ServiceReference1.ServiceClient objService = new ServiceReference1.ServiceClient();

    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            BindUserDetails();
        }
    }

    protected void BindUserDetails()
    {
        IList<CustomerDetails> objUserDetails = new List<CustomerDetails>();
        objUserDetails = objService.GetCustomerDetails("");

        GridView1.DataSource = objUserDetails;
        GridView1.DataBind();
    }

    protected void btnSubmit_Click(object sender, EventArgs e)
    {
        CustomerDetails customerInfo = new CustomerDetails();
        customerInfo.CutomerName = txtCutomerName.Text;
        customerInfo.FirstName = txtfname.Text;
        customerInfo.LastName = txtlname.Text;
        customerInfo.Address = txtlocation.Text;
        string result = objService.InsertCustomerDetails(customerInfo);
        lblResult.Text = result;
        BindUserDetails();
        txtCutomerName.Text = string.Empty;
        txtfname.Text = string.Empty;
        txtlname.Text = string.Empty;
        txtAddress.Text = string.Empty;
    }
}

By using this you have successfully inserted data in the database and you have also shown this in the grid view.

!! Happy Programming !!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Sujit Bhujbal
Software Developer (Senior)
India India
Member
Sujit Bhujbal is Senior Software Engineer having over 4+ years of Experience in Asp.net 3.5,WPF,WCF and has worked on various platforms. He worked during various phases of SDLC such as Requirements and Analysis, Design and Construction, development, maintenance, Testing, UAT.
 
He is Microsoft Certified Technology Specialist (MCTS) in Asp.net 3.5 Web Applications. He worked at various levels and currently working as a Senior Software Engineer.
 
His core areas of skill are Web application development using WPF,WCF , C#.Net, ASP.Net 3.5, WCF, SQL Server 2008, CSS, Java script Web design using HTML, AJAX and Crystal Reports
 
Working experience at various levels of SDLC starting from Feasibility, use/test case generation till maintenance, and help document preparation of software products.
 
He is proficient in developing applications using SilverLight irrespective of the language, with sound knowledge of Microsoft Expression Blend and exposure to other Microsoft Expression studio tools.
 
He has good experience in deploying applications using .net based deployment architecture with exposure to other deployment packages like Installshield.
 
-----------------------------------------------------------
Blog: www.sujitbhujbal.blogspot.com
Personal Website :- http://sujitbhujbal.wordpress.com/
Facebook :- www.facebook.com/sujit.bhujbal
CodeProject:-http://www.codeproject.com/Members/Sujit-Bhujbal
DotNetHeaven:- http://www.dotnetheaven.com/Authors/sujit9923/sujit-bhujbal.aspx
CsharpCorner:-http://www.c-sharpcorner.com/Authors/sujit9923/sujit-bhujbal.aspx
Linkedin :- http://in.linkedin.com/in/ sujitbhujbal
Stack-Exchange: http://stackexchange.com/users/469811/sujit-bhujbal
Twitter :- http://twitter.com/SujeetBhujbal
JavaTalks :-http://www.javatalks.com/Blogger/sujit9923/
------------------------------------------------------------

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionExcellentmemberPullagalla8 May '13 - 22:55 
Questionvote 4membernarenderkumardhull4 Apr '13 - 19:34 
AnswerRe: vote 4memberSujit Bhujbal5 Apr '13 - 6:16 
GeneralMy vote of 4memberAryanVerma17 Feb '13 - 19:52 
GeneralRe: My vote of 4memberSujit Bhujbal24 Feb '13 - 23:47 
QuestionExcellent writtenmemberAshishmau13 Jan '13 - 22:06 
AnswerRe: Excellent writtenmemberSujit Bhujbal24 Feb '13 - 23:47 
QuestionUsing the WCF Test ClientmemberMember 974671710 Jan '13 - 10:30 
GeneralMy vote of 5memberAnusha SR28 Dec '12 - 20:02 
GeneralRe: My vote of 5memberSujit Bhujbal24 Feb '13 - 23:44 
GeneralRe: My vote of 5memberSujit Bhujbal24 Feb '13 - 23:49 
GeneralMy vote of 1memberDejaVu834 Nov '12 - 19:48 
GeneralRe: My vote of 1memberSujit Bhujbal6 Nov '12 - 22:15 
GeneralRe: My vote of 1memberSujit Bhujbal6 Nov '12 - 22:28 
GeneralRe: My vote of 1memberDejaVu837 Nov '12 - 5:03 
GeneralRe: My vote of 1memberSujit Bhujbal7 Nov '12 - 17:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 30 Sep 2012
Article Copyright 2012 by Sujit Bhujbal
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid