Exemplo n.º 1
0
        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();
        }
Exemplo n.º 2
0
 protected void BuscarButton_Click(object sender, EventArgs e)
 {
     CxCGridView.DataSource = CxC.Listar("*", "IdClub =" + ClubDropDownList.SelectedValue);
     CxCGridView.DataBind();
 }