public ActionResult DeleteConfirmed(int id)
        {
            Bloem bloem = db.Bloems.Find(id);

            db.Bloems.Remove(bloem);
            db.SaveChanges();
            return(RedirectToAction("Index"));
        }
 public ActionResult Edit([Bind(Include = "Id,Naam,Prijs,Omschrijving,Plaatje")] Bloem bloem)
 {
     if (ModelState.IsValid)
     {
         db.Entry(bloem).State = EntityState.Modified;
         db.SaveChanges();
         return(RedirectToAction("Index"));
     }
     return(View(bloem));
 }
예제 #3
0
        // GET: Bloemen/Details/5
        public ActionResult Details(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            Bloem bloem = db.Bloems.Find(id);

            if (bloem == null)
            {
                return(HttpNotFound());
            }
            return(View(bloem));
        }
        public ActionResult Create([Bind(Include = "Id,Naam,Prijs,Omschrijving")] Bloem bloem, HttpPostedFileBase plaatje)
        {
            if (ModelState.IsValid)
            {
                try
                {
                    //Method 1 Get file details from current request
                    //Uncomment following code if you wants to use method 1
                    //if (Request.Files.Count > 0)
                    // {
                    //     var Inputfile = Request.Files[0];

                    //     if (Inputfile != null && Inputfile.ContentLength > 0)
                    //     {
                    //         var filename = Path.GetFileName(Inputfile.FileName);
                    //       var path = Path.Combine(Server.MapPath("~/uploadedfile/"), filename);
                    //        Inputfile.SaveAs(path);
                    //    }
                    // }

                    //Method 2 Get file details from HttpPostedFileBase class

                    if (plaatje != null)
                    {
                        string path = Path.Combine(Server.MapPath("~/Content/Images"), Path.GetFileName(plaatje.FileName));
                        bloem.Plaatje = plaatje.FileName;
                        plaatje.SaveAs(path);
                    }
                    ViewBag.FileStatus = "File uploaded successfully.";
                }
                catch (Exception)
                {
                    ViewBag.FileStatus = "Error while file uploading.";
                }

                db.Bloems.Add(bloem);
                db.SaveChanges();
                return(RedirectToAction("Index"));
            }

            return(View(bloem));
        }