protected void Button2_Click(object sender, EventArgs e)
 {
     try
     {
         LoginRegisterSvcRef.Service1Client obj = new LoginRegisterSvcRef.Service1Client();
         String[] result = obj.viewOrders();
         ListBox1.Items.Clear();
         foreach (string r in result)
         {
             ListBox1.Items.Add(r);
         }
     }
     catch (Exception ex)
     {
         ListBox1.Items.Clear();
         ListBox1.Items.Add("Error!" + ex.ToString());
     }
 }