protected void btnSalvar_Click(object sender, EventArgs e) { var campoOpcao = new CampoOpcao(); try { if (txtId.Text != "") { campoOpcao.IDCampoOpcao = int.Parse(txtId.Text); campoOpcao.Get(); } campoOpcao.IDCampo = int.Parse(Request["idCampo"]); campoOpcao.Opcao = txtNome.Text; campoOpcao.Save(); GetValoresCampo(); Page.ClientScript.RegisterStartupScript(this.GetType(), "script", "<script>alert('Registro salvo.')</script>"); } catch (Exception err) { Page.ClientScript.RegisterStartupScript(this.GetType(), "script", "<script>alert('" + FormatError.FormatMessageForJAlert(err.Message) + "')</script>"); } }
private void GetCampoOpcao(int idCampoOpcao) { dvSalvarCampoOpcao.Visible = true; dvListarValoresCampo.Visible = false; var campoOpcao = new CampoOpcao(); campoOpcao.IDCampoOpcao = idCampoOpcao; campoOpcao.Get(); txtId.Text = campoOpcao.IDCampoOpcao.ToString(); txtNome.Text = campoOpcao.Opcao; }