Ejemplo n.º 1
0
        protected void btnEliminar_Click(object sender, EventArgs e)
        {
            ProduNegocio negocio = new ProduNegocio();
            Produ        produ   = new Produ();

            try
            {
                produ.nombre = txtEliminar.Text;
                negocio.Baja(produ);
            }
            catch (Exception)
            {
                throw;
            }
        }