예제 #1
0
        protected void Page_Init(object sender, EventArgs e)
        {
            var _mp = new DlMainpagepopulator();

            //get salaries
            CheckBoxList6.DataSource     = _mp.GetSalary();
            CheckBoxList6.DataTextField  = "sTerm";
            CheckBoxList6.DataValueField = "Termid";
            CheckBoxList6.DataBind();

            //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();

            if (Request.QueryString["q"] != null & Request.QueryString["q"] != "all")
            {
                TextBox2.Text = Request.QueryString["q"];
            }
        }
예제 #2
0
        public void Page_Init(object sender, EventArgs e)
        {
            //constructor
            var mp = new DlMainpagepopulator();

            //populate left
            //get salaries
            CheckBoxList6.DataSource     = mp.GetSalary();
            CheckBoxList6.DataTextField  = "sTerm";
            CheckBoxList6.DataValueField = "Termid";
            CheckBoxList6.DataBind();

            //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();
        }