コード例 #1
0
        public void Agregar()
        {
            PizzaBO oPizza = DtaCollection();

            if (txtNombre.Text.Length != 0)
            {
                oPizzaDAO.CrearPizza(oPizza);
            }

            Limpiar();
            Response.Redirect("Pizza.aspx");
        }