Exemplo n.º 1
0
 protected void btnAddCust_Click(object sender, EventArgs e)
 {
     if (Page.IsValid)
     {
         CustomerList custList = CustomerList.GetCustomers();
         custList.AddCust(selectedCust);
     }
 }
Exemplo 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();
     }
 }
Exemplo 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();
     }
 }