Ejemplo n.º 1
0
    protected void Button1_Click(object sender, EventArgs e)
    {
        ServiceReference1.Service1Client sc = new ServiceReference1.Service1Client();
        Employee emp = sc.GetEmployeeById(int.Parse(TextBox4.Text));

        TextBox2.Text = emp.Name;
        TextBox3.Text = emp.Salary;
    }