Exemple #1
0
        private void cargarListas()
        {
            //SubSonic.Select b = new SubSonic.Select();
            //b.From(RisEntidad.Schema);

            //var listaEstudios = b.ExecuteTypedList<RisEntidad>();

            ddlCentroDeInvestigacion.DataSource = RisCentrosDeInvestigacion.FetchAll();
            ddlCentroDeInvestigacion.DataBind();
            ddlCentroDeInvestigacion.Items.Insert(0, new ListItem("--Seleccionar--", "0"));
        }
Exemple #2
0
 private void cargarListas()
 {
     ddlCentroDeInvestigacion.DataSource = RisCentrosDeInvestigacion.FetchAll();
     ddlCentroDeInvestigacion.DataBind();
     ddlCentroDeInvestigacion.Items.Insert(0, new ListItem("--Seleccionar--", "0"));
 }