Exemplo n.º 1
0
        protected void btnguardar_Click(object sender, EventArgs e)
        {
            FamiliaDAO db = new FamiliaDAO();
            Familia    fa = new Familia();

            fa.Id_Familia = Convert.ToInt32(txtid.Text);
            fa.Nombre     = txtdescripcion.Text;
            db.update(fa);
            Response.Redirect("ManteFamilia.aspx", true);
        }