protected void Unnamed2_Click(object sender, EventArgs e) { Ecard.Modelo.Ponto_referencia pr = new Ecard.Modelo.Ponto_referencia(TextBox1.Text); Ecard.DAL.DALPonto_referencia dal = new Ecard.DAL.DALPonto_referencia(); dal.Insert(pr); Response.Redirect("~//CadastroPontoReferencia.aspx"); }
protected void Unnamed1_Click(object sender, EventArgs e) { id = int.Parse(Request.QueryString["id"]); id = int.Parse(Request.QueryString["id"]); Ecard.DAL.DALPonto_referencia p = new Ecard.DAL.DALPonto_referencia(); Ecard.Modelo.Ponto_referencia ponto = p.Select(id); p.Delete(ponto); Response.Redirect("~//CadastroPontoReferencia.aspx"); }
protected void Page_Load(object sender, EventArgs e) { id = int.Parse(Request.QueryString["id"]); Ecard.DAL.DALPonto_referencia p = new Ecard.DAL.DALPonto_referencia(); Ecard.Modelo.Ponto_referencia Ponto_referencia = p.Select(id); if (!IsPostBack) { TextBox1.Text = Ponto_referencia.Nome; } }