protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { Cuentas cuenta = new Cuentas(); CuentaOrigenDropDownList.DataSource = cuenta.Listado(" * ", "1=1", ""); CuentaOrigenDropDownList.DataTextField = "Descripcion"; CuentaOrigenDropDownList.DataValueField = "CuentaId"; CuentaOrigenDropDownList.DataBind(); CuentaDestinoDropDownList.DataSource = cuenta.Listado(" * ", "CuentaId <> " + CuentaOrigenDropDownList.SelectedValue, ""); CuentaDestinoDropDownList.DataTextField = "Descripcion"; CuentaDestinoDropDownList.DataValueField = "CuentaId"; CuentaDestinoDropDownList.DataBind(); int id; Transferencias tran = new Transferencias(); if (Request.QueryString["id"] != null) { int.TryParse(Request.QueryString["id"].ToString(), out id); if (id > 0) { if (!tran.Buscar(id)) { Utilitarios.ShowToastr(this.Page, "Registro no encontrado.", "Error", "Error"); Limpiar(); } else { Llenar(tran); } } } } }
protected void Page_Load(object sender, EventArgs e) { int IdTransferencia = 0; if (!IsPostBack) { int.TryParse(Request.QueryString["IdTransferencia"], out IdTransferencia); if (tran.Buscar(IdTransferencia)) { TbIdTransferencia.Text = IdTransferencia.ToString(); DdIdCuentaOrigen.SelectedIndex = tran.IdCuentaOrigen; DdIdCuentaDestion.SelectedIndex = tran.IdCuentaDestino; TbFecha.Text = tran.Fecha.ToString("yyyy-MM-dd"); TbValor.Text = tran.Valor.ToString(); TbDescripcion.Text = tran.Descripcion; BtnGuardar.Text = "Actualizar"; } } DdIdCuentaDestion.DataSource = Cuentas.Lista("IdCuenta,Descripcion", "Cuentas"); DdIdCuentaDestion.DataTextField = "Descripcion"; DdIdCuentaDestion.DataValueField = "IdCuenta"; DdIdCuentaDestion.DataBind(); DdIdCuentaOrigen.DataSource = Cuentas.Lista("IdCuenta,Descripcion", "Cuentas"); DdIdCuentaOrigen.DataTextField = "Descripcion"; DdIdCuentaOrigen.DataValueField = "IdCuenta"; DdIdCuentaOrigen.DataBind(); }
private void buttonBuscarId_Click(object sender, EventArgs e) { ObtenerValores(); if (textBoxId.Text.Length == 0) { MessageBox.Show("Debe insertar un Id", "Error al Buscar", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } else { if (transferencias.Buscar(transferencias.TransferenciaId)) { DevolverValores(); } else { MensajeAdvertencia("Id no encontrado"); Limpiar(); } } }
protected void Buscarbutton_Click(object sender, EventArgs e) { Transferencias transferencia = new Transferencias(); int Id = 0; int.TryParse(TransferenciaIdTextBox.Text, out Id); transferencia.TransferenciaId = Id; if (Id > 0) { if (transferencia.Buscar(Id)) { Llenar(transferencia); } else { Utilitarios.ShowToastr(this.Page, "Ingrese un id", "Error", "Warning"); } } else { Utilitarios.ShowToastr(this.Page, "El id no existe", "Error", "Warning"); } }
public void BuscarTest() { Transferencias transferencias = new Transferencias(); Assert.IsTrue(transferencias.Buscar(2)); }