protected void Button3_Click(object sender, EventArgs e)
 {
     LoginRegisterSvcRef.Service1Client obj1 = new LoginRegisterSvcRef.Service1Client();
     String[] result1 = obj1.viewStaff();
     ListBox2.Items.Clear();
     foreach (string r1 in result1)
     {
         ListBox2.Items.Add(r1);
     }
 }