protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e)
        {
            ManejoDatos datos = new ManejoDatos();
            var         bs1   = new System.Windows.Forms.BindingSource();

            bs1.DataSource       = datos.getEstudiantesBusqueda(TextBox1.Text);
            GridView1.DataSource = bs1; //<-- notes it takes the entire bindingSource
            GridView1.PageIndex  = e.NewPageIndex;
            GridView1.DataBind();
            //  Label1.Text = "Correcto";

            GridView1.DataBind();
        }
        protected void Button2_Click(object sender, EventArgs e)
        {
            panelModalBusquedaEst.Visible = true;
            ModalPopupExtender1.Show();
            // Label1.Text = "Buscando";
            ManejoDatos datos = new ManejoDatos();
            // List<Estudiante> listado =
            var bs1 = new BindingSource();

            bs1.DataSource       = datos.getEstudiantesBusqueda(TextBox1.Text);
            GridView1.DataSource = bs1; //<-- notes it takes the entire bindingSource
            GridView1.DataBind();
            //  Label1.Text = "Correcto";
        }