コード例 #1
0
 protected void btnActualizar_Click(object sender, EventArgs e)
 {
     Transaccion.ActualizarUsuario(this.CodUsuario.Value, this.txtUsuario.Text, this.txtContrasena.Text, this.txtMail.Text, this.perfil.SelectedValue, this.region.SelectedValue, this.comuna.SelectedValue, this.txtDireccion.Text, this.txtNumero.Text, this.txtTelefono.Text, this.txtCelular.Text, this.Cargo.SelectedValue, this.txtNombres.Text, this.txtAPaterno.Text, this.txtAMaterno.Text, this.dropcliente.SelectedValue.ToString());
     this.Page.RegisterClientScriptBlock("Mensaje", "<script>alert('Datos actualizados correctamente');</script>");
     this.Cancela();
 }