Esempio n. 1
0
 protected void btnAddCust_Click(object sender, EventArgs e)
 {
     if (Page.IsValid)
     {
         CustomerList custList = CustomerList.GetCustomers();
         custList.AddCust(selectedCust);
     }
 }
Esempio n. 2
0
 protected void btnAddCust_Click(object sender, EventArgs e)
 {
     if (Page.IsValid)
     {
         custList = CustomerList.GetCustomers();
         custList.AddCust(selectedCust);
         lbCustListCount.Text = custList.Count.ToString();
     }
 }
Esempio n. 3
0
 protected void btnAddCust_Click(object sender, EventArgs e)
 {
     if (Page.IsValid)
     {
         custList = CustomerList.GetCustomers();
         custList.AddCust(selectedCust);
         lbCustListCount.Text = custList.Count.ToString();
     }
 }