Exemplo n.º 1
0
 protected void ddlState_SelectedIndexChanged(object sender, EventArgs e)
 {
     if (ddlState.SelectedIndex > 0)
     {
         DropDownManager.GetLGA(ddlLGA, ddlState.SelectedValue.TrimEnd());
     }
 }
Exemplo n.º 2
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         DropDownManager.PopulateYear(ddlYear);
         DropDownManager.PopulateSchool(ddlSchool);
         DropDownManager.GetLGA(ddlLocalGovt, "ED");
     }
 }
Exemplo n.º 3
0
        //DropDownManager dropDownManager = new DropDownManager();

        protected void Page_Load(object sender, EventArgs e)
        {
            if (!Page.IsPostBack)
            {
                DropDownManager.PopulateRelation(ddlRelation);
                DropDownManager.GetLGA(ddlLGA, null);
                DropDownManager.GetState(ddlState);
                DropDownManager.GetGender(ddlSex);
            }
        }
Exemplo n.º 4
0
 protected void Page_Load(object sender, EventArgs e)
 {
     Page.Title = "Add New School";
     if (!Page.IsPostBack)
     {
         DropDownManager.GetLGA(ddlLGA, "ED");
         DropDownManager.GetCategory(ddlSchoolCat);
         DropDownManager.GetTitle(ddlTitle);
         ddlLGA.SelectedValue = SessionUser.LgaId.ToString();
     }
 }