protected void btn_Actualizar_Cuota_Proximo_Mes_Click(object sender, EventArgs e)
        {
            ServiceReference1.Service1Client servicio = new ServiceReference1.Service1Client();
            string auxUserName   = System.Web.HttpContext.Current.User.Identity.Name;
            int    id_condominio = servicio.id_Condominio_desde_Funcionario(auxUserName);
            var    estado        = servicio.SP_Actualizar_Cuota_G_C(id_condominio);

            lbl_estado_cuota_proximo_mes.Text = estado.ToString();
        }