protected void Button1_Click(object sender, EventArgs e)
 {
     ServiceReference1.Service1Client credGen = new ServiceReference1.Service1Client();
     String firstName = TextBox1.Text;
     String lastName = TextBox2.Text;
     Int32 age = Int32.Parse(TextBox3.Text);
     Label1.Text = credGen.password(firstName, lastName, age);
     Label2.Text = credGen.loginId(age);
 }
 private void button1_Click(object sender, EventArgs e)
 {
     ServiceReference1.Service1Client credGen = new ServiceReference1.Service1Client();
     String firstName = textBox1.Text;
     String lastName = textBox2.Text;
     Int32 age = Int32.Parse(textBox3.Text);
     label6.Text = credGen.password(firstName, lastName, age);
     label7.Text = credGen.loginId(age);
 }