Ejemplo n.º 1
0
        protected void Page_Init(object sender, EventArgs e)
        {
            var mp = new DlMainpagepopulator();

            //get locations
            CheckBoxList2.DataSource     = mp.GetLocations();
            CheckBoxList2.DataTextField  = "sTerm";
            CheckBoxList2.DataValueField = "Termid";
            CheckBoxList2.DataBind();

            //get industry
            CheckBoxList1.DataSource     = mp.GetIndustries();
            CheckBoxList1.DataTextField  = "sTerm";
            CheckBoxList1.DataValueField = "Termid";
            CheckBoxList1.DataBind();

            //get salary
            CheckBoxList6.DataSource     = mp.Getsalaries();
            CheckBoxList6.DataTextField  = "sTerm";
            CheckBoxList6.DataValueField = "Termid";
            CheckBoxList6.DataBind();
        }