コード例 #1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            c = new UControl();
            f = new FacadeAspiranteSE(this);
            a = new AntecedentesAluQL();

            //Session["alu_ID"] = 2;
            if (a.SelectExiste((int)Session["alu_ID"]))
            {
                if (!IsPostBack)
                {
                    LlenarSiExiste((int)Session["alu_ID"]);
                }
                btnGuardar.Text = "ACTUALIZAR";
            }
            else
            {
                btnGuardar.Text = "GUARDAR";
            }
        }
コード例 #2
0
        protected void Page_Load(object sender, EventArgs e)
        {
            CargarBecas();
            co = new UControl();
            f  = new FacadeAspiranteSE(this);
            a  = new BecasDAOSQL();

            //Session["alu_ID"] = 2;
            if (a.SelectExiste((int)Session["alu_ID"]))
            {
                if (!IsPostBack)
                {
                    LlenarSiExiste((int)Session["alu_ID"]);
                }
                btnSiguiente2.Text = "ACTUALIZAR";
            }
            else
            {
                btnSiguiente2.Text = "GUARDAR";
            }
        }
コード例 #3
0
        protected void btnSiguiente2_Click(object sender, EventArgs e)
        {
            UControl          control = new UControl();
            FacadeAspiranteSE f       = new FacadeAspiranteSE(this);

            if (f.LlamarSelectExiste(2))
            {
                f.LlamarUpdate(2);
                Type   cstype = this.GetType();
                string script = "<script language='javascript'>alert('!!Felicidades!!, Tu información se actualizó correctamente')</script>";
                this.ClientScript.RegisterStartupScript(cstype, Guid.NewGuid().ToString(), script, false);
            }
            else
            {
                f.LlamarInsert(2);
                control.RegistrarFormulario(3, Convert.ToInt32(Session["alu_ID"]));
                Type   cstype = this.GetType();
                string script = "<script language='javascript'>alert('!!Felicidades!!, Tu información se guardo correctamente')</script>";
                this.ClientScript.RegisterStartupScript(cstype, Guid.NewGuid().ToString(), script, false);
            } Server.Transfer("formulario_1.aspx", true);
        }