private void PopulateShowYears() { ShowYears showYears = new ShowYears(); List<ShowYears> lkpShowYears; lkpShowYears = showYears.GetShow_Years(); lstShowYears.DataSource = lkpShowYears; lstShowYears.DataBind(); }
private void PopulateListBoxes() { ShowTypes showTypes = new ShowTypes(); List<ShowTypes> lkpShowTypes; lkpShowTypes = showTypes.GetShow_Types(); lstShowTypes.DataSource = lkpShowTypes; lstShowTypes.DataBind(); ShowYears showYears = new ShowYears(); List<ShowYears> lkpShowYears; lkpShowYears = showYears.GetShow_Years(); lstShowYears.DataSource = lkpShowYears; lstShowYears.DataBind(); }