示例#1
0
 public void LoadDoctorDropDownList()
 {
     doctorDropDownList.DataSource     = aCenterManager.GetAllDoctorByCenterID(newCenter.ID);
     doctorDropDownList.DataTextField  = "Name";
     doctorDropDownList.DataValueField = "ID";
     doctorDropDownList.DataBind();
 }