private void init_params() { ProductGroup.DataSource = new ProductsBLL().getCustomerGroups(); ProductGroup.DataBind(); ProductsTable.DataSource = new ProductsBLL().getCustomerProducts(); ProductsTable.DataBind(); }
protected void ProductGroup_ItemCommand(object source, RepeaterCommandEventArgs e) { ProductsTable.DataSource = new ProductsBLL().getCustomerProducts(((LinkButton)e.CommandSource).Text); ProductsTable.DataBind(); }