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