protected void Page_Load(object sender, EventArgs e)
 {
     if (Session["numero_cuenta"] != null)
     {
         BancoWebService.BancoWebServiceSoapClient banco = new BancoWebService.BancoWebServiceSoapClient();
         num_cuenta = Session["numero_cuenta"].ToString();
         var cuenta = banco.IniciarSecion(num_cuenta);
         lbl_monto.Text = "Saldo actual: " + cuenta.saldo + "$";
     }
 }
Exemplo n.º 2
0
    protected void Page_Load(object sender, EventArgs e)
    {
        if (Session["numero_cuenta"] != null)
        {
            BancoWebService.BancoWebServiceSoapClient banco = new BancoWebService.BancoWebServiceSoapClient();
            var cuenta = banco.IniciarSecion(Session["numero_cuenta"].ToString());

            this.txt_codigo_cuenta.Text   = cuenta.numero_cuenta;
            this.txt_nombre_completo.Text = cuenta.nombre_propietario;
            this.txt_pin.Text             = cuenta.pin;
            this.txt_saldo_inicial.Text   = Double.Parse(cuenta.saldo.ToString()).ToString();
        }
    }