Beispiel #1
0
        protected override void OnLoad(EventArgs e)
        {
            base.OnLoad(e);

            if (IsPostBack)
            {
                return;
            }

            Ddl_County.DataSource = CountyList;
            Ddl_County.DataBind();
        }
 /// <summary>
 /// Populates the County dropDownList
 /// </summary>
 protected void PopulateCountyList()
 {
     Ddl_County.DataSource = countyList;
     Ddl_County.DataBind();
 }
Beispiel #3
0
 /// <summary>
 /// Populates the County dropDownList
 /// </summary>
 protected void PopulateCountyList()
 {
     Ddl_County.DataSource = _countryManager.GetCountryList();
     Ddl_County.DataBind();
 }