예제 #1
0
 public void Bind_DDL_Zone()
 {
     DDlZone.Items.Clear();
     DDlZone.DataSource = Masters.Get_AreaZone_Zone_SuperZone(Convert.ToInt32(DDLSuperZone.SelectedValue.ToString()), "Zone");
     DDlZone.DataBind();
     DDlZone.Items.Insert(0, new ListItem("-Select Zone-", "0"));
 }
예제 #2
0
 public void getDDLdata()
 {
     DDlZone.DataSource = Masters.Get_AreaZone_Zone_SuperZone(Convert.ToInt32(DDLSuperZone.SelectedValue.ToString()), "Zone");
     DDlZone.DataBind();
     DDlZone.Items.Insert(0, new ListItem("--Select Zone--", "0"));
     DDlZone.Enabled = true;
     // DDlZone.Focus();
 }