示例#1
0
 private void PopulateShowYears()
 {
     ShowYears showYears = new ShowYears();
     List<ShowYears> lkpShowYears;
     lkpShowYears = showYears.GetShow_Years();
     lstShowYears.DataSource = lkpShowYears;
     lstShowYears.DataBind();
 }
示例#2
0
    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();
    }