protected void Page_Init(object sender, EventArgs e)
        {
            string  id           = Application["Id"].ToString();
            DataSet dsInstitutos = new DataSet();

            dsInstitutos = Universidad.mtdListaInformacion(id);
            mtdcargar();
            TextCodigo.Text             = dsInstitutos.Tables[0].Rows[0][0].ToString();
            TextNombre.Text             = dsInstitutos.Tables[0].Rows[0][1].ToString();
            TextNit.Text                = dsInstitutos.Tables[0].Rows[0][2].ToString();
            DropDownList5.SelectedValue = dsInstitutos.Tables[0].Rows[0][3].ToString();
            DropDownList6.SelectedValue = dsInstitutos.Tables[0].Rows[0][4].ToString();
            DropDownList4.SelectedValue = dsInstitutos.Tables[0].Rows[0][5].ToString();
            TextCorreo.Text             = dsInstitutos.Tables[0].Rows[0][9].ToString();
            TextContraseña.Text         = dsInstitutos.Tables[0].Rows[0][10].ToString();
        }
        protected void Page_Load(object sender, EventArgs e)
        {
            string  valor         = Request.QueryString["id"].ToString();
            DataSet dsInstitucion = new DataSet();

            dsInstitucion     = universidades.mtdListaInformacion(valor);
            Codigo.Text       = dsInstitucion.Tables[0].Rows[0][0].ToString();
            Nombre.Text       = dsInstitucion.Tables[0].Rows[0][1].ToString();
            Nit.Text          = dsInstitucion.Tables[0].Rows[0][2].ToString();
            sec.Text          = dsInstitucion.Tables[0].Rows[0][3].ToString();
            acre.Text         = dsInstitucion.Tables[0].Rows[0][4].ToString();
            pri.Text          = dsInstitucion.Tables[0].Rows[0][5].ToString();
            departamento.Text = dsInstitucion.Tables[0].Rows[0][6].ToString();
            municipio.Text    = dsInstitucion.Tables[0].Rows[0][7].ToString();
            caracter.Text     = dsInstitucion.Tables[0].Rows[0][8].ToString();
        }