//BOTON DE CAMBIAR DATOS DEL IDIOMA protected void BTN_chang_Click(object sender, EventArgs e) { Button btn = (Button)sender; UEUIdioma datos = new UEUIdioma(); datos.Nombre_Idioma = Nombre_Idioma.Text; datos.Terminacion = Termin_Idioma.Text; datos.Id_Idioma = int.Parse(btn.CommandArgument); L_Idioma logi = new L_Idioma(); logi.update_idiom(datos); Response.Redirect("AdministrarIdiomas.aspx"); }