protected void Page_Load(object sender, EventArgs e)
        {
            totalI = 0;
            totalE = 0;
            LlenarVacios();
            a = new IngrEgrFamiliaresDAOSQL();

            //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";
            }
        }