public void CargarDeudas() { DeudaDropDownList.DataSource = CxC.Listar("IdCxC, Concat('Fecha: ', Fecha,' Monto: ',Monto) as Deuda", "IdMiembro = " + MiembroDropDownList.SelectedValue + " and IdTipoDocumento = " + TipoDropDownList.SelectedValue + " and Estado = 0"); DeudaDropDownList.DataTextField = "Deuda"; DeudaDropDownList.DataValueField = "IdCxC"; DeudaDropDownList.DataBind(); BuscarValor(); }
private void LlenaComboBox() { RepositorioBase <Suplidores> sRepositorio = new RepositorioBase <Suplidores>(); SuplidorDropDownList.DataSource = sRepositorio.GetList(u => true); SuplidorDropDownList.DataValueField = "SuplidorId"; SuplidorDropDownList.DataTextField = "Nombre"; SuplidorDropDownList.DataBind(); RepositorioBase <PagoCompra> Repositorio = new RepositorioBase <PagoCompra>(); DeudaDropDownList.DataSource = Repositorio.GetList(u => true); DeudaDropDownList.DataValueField = "PagoCompraId"; DeudaDropDownList.DataTextField = "Deuda"; DeudaDropDownList.DataBind(); //CargarDeuda(Util.ToInt(DeudaTextBox.Text)); }