Esempio n. 1
0
        // GET: Vehicles/Create
        public ActionResult Create()
        {
            var form = new VehicleAddForm();

            return(View(form));

            // Attention - 5 - Make sure you remember to change the multipart "enctype" value in the HTML Form in the view
        }
        // GET: Vehicles/Create
        public ActionResult Create()
        {
            var form = new VehicleAddForm();

            return View(form);

            // Attention - 5 - Make sure you remember to change the multipart "enctype" value in the HTML Form in the view
        }