protected void BTN_Edit_Click(object sender, EventArgs e)
    {
        Button btn     = (Button)sender;
        int    command = int.Parse(btn.CommandArgument.ToString());

        BTN_chang.CommandArgument = command.ToString();
        BTN_chang.Visible         = true;
        Button1.Visible           = false;
        //OBTENER DATOS
        L_Idioma  logi = new L_Idioma();
        UEUIdioma idim = logi.traer_datos(command);

        Termin_Idioma.Text = idim.Terminacion;
        Nombre_Idioma.Text = idim.Nombre_Idioma;
    }