protected void Page_Load(object sender, EventArgs e)
        {
            DBConnection bindComboBox = new DBConnection();
            City cities = new City();
            DataTable DT = new DataTable();
            DT = bindComboBox.BindDropdown(cities.SearchCities(), "City_Name", "City_Number");
            CityDDL.DataSource = DT;
            CityDDL.DataValueField = "City_Number";
            CityDDL.DataTextField = "City_Name";

            CityDDL.DataBind();

            GenderDDL.Items.Add("Male");
            GenderDDL.Items.Add("Female");

            //EmployeeType
            EmployeeType empType = new EmployeeType();
            DT = bindComboBox.BindDropdown(empType.SearchEmployeeTypes(), "Employee_Type_Name", "Employee_Type_Number");

            EmployeeTypeDDL.DataSource = DT;
            EmployeeTypeDDL.DataValueField = "Employee_Type_Name";
            EmployeeTypeDDL.DataTextField = "Employee_Type_Number";

            EmployeeTypeDDL.DataBind();
        }
Exemplo n.º 2
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!Page.IsPostBack)
            {
                DBConnection bindComboBox = new DBConnection();
                City cities = new City();
                DataTable DT = new DataTable();
                DT = bindComboBox.BindDropdown(cities.SearchCities(), "City_Name", "City_Number");
                CityDDL.DataSource = DT;
                CityDDL.DataValueField = "City_Number";
                CityDDL.DataTextField = "City_Name";

                CityDDL.DataBind();
            }
        }
        protected void Page_Load(object sender, EventArgs e)
        {
            Client c = new Client();

            c.SearchClients("");

            List<Cli> myLi = new List<Cli>();

            foreach (Client inC in ClientBindingList.MyClientList)
            {
                userNumbersList.Add(inC.UserNumber);

                Cli me = new Cli();
                me.FirstName = inC.FirstName;
                me.Surname = inC.Surname;
                me.ContactNumber = inC.ContactNumber;
                myLi.Add(me);
            }

            gvwStudents.DataSource = myLi;
            gvwStudents.DataBind();

            //City
            DBConnection bindComboBox = new DBConnection();
            City cities = new City();
            DataTable DT = new DataTable();
            DT = bindComboBox.BindDropdown(cities.SearchCities(), "City_Name", "City_Number");
            CityDDL.DataSource = DT;
            CityDDL.DataValueField = "City_Number";
            CityDDL.DataTextField = "City_Name";

            CityDDL.DataBind();

            GenderDDL.Items.Add("Male");
            GenderDDL.Items.Add("Female");
        }