protected void Page_Load(object sender, EventArgs e) { int IdCxC = 0; if (!IsPostBack) { DdIdCuenta.DataSource = Cuentas.Lista("IdCuenta,Descripcion", "Cuentas"); DdIdCuenta.DataTextField = "Descripcion"; DdIdCuenta.DataValueField = "IdCuenta"; DdIdCuenta.DataBind(); int.TryParse(Request.QueryString["IdCxC"], out IdCxC); if (cc.Buscar(IdCxC)) { TbIdCxC.Text = cc.IdCxC.ToString(); DdIdCuenta.SelectedIndex = cc.IdCuenta; TbFecha.Text = cc.Fecha.ToString("yyyy-MM-dd"); TbValor.Text = cc.Valor.ToString(); TbBalance.Text = cc.Balance.ToString(); TbDescripcion.Text = cc.Descripcion; BtnGuardar.Text = "Actualizar"; } if (DdIdCuenta.SelectedValue != "") { if (c.Buscar(DdIdCuenta.SelectedValue) == true) { TbBalance.Text = c.Balance.ToString(); } } } }
protected void Page_Load(object sender, EventArgs e) { int IdGasto = 0; if (!IsPostBack) { int.TryParse(Request.QueryString["IdGasto"], out IdGasto); if (gas.Buscar(IdGasto)) { TbIdGasto.Text = Convert.ToString(IdGasto); DdIdCuenta.SelectedIndex = gas.IdCuenta; DdIdCategoria.SelectedIndex = gas.IdCategoria; TbFecha.Text = gas.Fecha.ToString("yyyy-MM-dd"); TbValor.Text = gas.Valor.ToString(); TbDescripcion.Text = gas.Descripcion; BtnGuardar.Text = "Actualizar"; } DdIdCategoria.DataSource = Categorias.Lista("IdCategoria,Descripcion", "Categorias"); DdIdCategoria.DataTextField = "Descripcion"; DdIdCategoria.DataValueField = "IdCategoria"; DdIdCategoria.DataBind(); DdIdCuenta.DataSource = Cuentas.Lista("IdCuenta,Descripcion", "Cuentas"); DdIdCuenta.DataTextField = "Descripcion"; DdIdCuenta.DataValueField = "IdCuenta"; DdIdCuenta.DataBind(); } }
protected void Page_Load(object sender, EventArgs e) { int IdP = 0; /// IdPago Detalle Sacado del QueryString int.TryParse(Request.QueryString["IdPago"], out IdP); if (!IsPostBack) { if (pag.Buscar(IdP)) { TbIdPago.Text = pag.IdCobro.ToString(); DdIdCuenta.SelectedIndex = pag.IdCuenta; TbFecha.Text = pag.Fecha.ToString("yyyy-MM-dd"); TbValor.Text = pag.Valor.ToString(); Buscar(IdP); BtnGuardar.Text = "Actulizar"; } DdIdCuenta.DataSource = Cuentas.Lista("IdCuenta,Descripcion ", "Cuentas"); DdIdCuenta.DataTextField = "Descripcion"; DdIdCuenta.DataValueField = "IdCuenta"; DdIdCuenta.DataBind(); DdIdCxP.DataSource = CxP.Lista("Descripcion,IdCxP ", "CxP"); DdIdCxP.DataTextField = "Descripcion"; DdIdCxP.DataValueField = "IdCxP"; DdIdCxP.DataBind(); } }
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(); }
protected void Page_Load(object sender, EventArgs e) { int IdC = 0;// IdCobro De QueyString; if (!IsPostBack) { int.TryParse(Request.QueryString["IdCobro"], out IdC); if (Cob.Buscar(IdC)) { TbIdCobro.Text = Cob.IdCobro.ToString(); DdIdCuenta.SelectedIndex = Cob.IdCuenta; TbFecha.Text = Cob.Fecha.ToString("yyyy-MM-dd"); TbValor.Text = Cob.Valor.ToString(); BtnGuardar.Text = "Actulizar"; Buscar(IdC); } } DdIdCuenta.DataSource = Cuentas.Lista("IdCuenta,Descripcion ", "Cuentas"); DdIdCuenta.DataTextField = "Descripcion"; DdIdCuenta.DataValueField = "IdCuenta"; DdIdCuenta.DataBind(); DdIdCxC.DataSource = CxC.Lista("Descripcion,IdCxC ", "CxC"); DdIdCxC.DataTextField = "Descripcion"; DdIdCxC.DataValueField = "IdCxC"; DdIdCxC.DataBind(); }
protected void BtnConsulta_Click(object sender, EventArgs e) { GridViewVista.DataSource = Cuentas.Lista("*", "Cuentas Where " + Tipo() + " like'" + TbBuscar.Text + "%'"); GridViewVista.DataBind(); }