Esempio n. 1
0
        public void ListaTiposAlmacenamiento(ref DropDownList oddlBD, bool IncluirValorInicial = true)
        {
            DLSoftware DataLayerSoftware = new DLSoftware();

            oddlBD.DataSource     = DataLayerSoftware.ListaTiposAlmacenamiento(IncluirValorInicial);
            oddlBD.DataValueField = "Valor";
            oddlBD.DataTextField  = "Descripcion";
        }