コード例 #1
0
        public ActionResult Details(long?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            VMProductInfo product  = db.Get(id);
            var           category = catdb.Get(product.CategoryID);

            ViewBag.CategoryName = category.Name;

            var Img = imgdb.Get(id);

            ViewBag.Img  = Path.GetFileName(Img.ImgPath);
            ViewBag.Thum = Path.GetFileName(Img.ThumbnailPath);
            if (product == null)
            {
                return(HttpNotFound());
            }
            return(View(product));
        }
コード例 #2
0
        public ActionResult Delete(long?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            VMProductInfo product = db.Get(id);

            if (product == null)
            {
                return(HttpNotFound());
            }
            ViewBag.CategoryID = new SelectList(catdb.GetAll().ToList(), "ID", "Name", product.CategoryID);

            var Img = imgdb.Get(id);

            ViewBag.Thum = Path.GetFileName(Img.ThumbnailPath);
            ViewBag.Img  = Path.GetFileName(Img.ImgPath);


            return(View(product));
        }
コード例 #3
0
        public ActionResult Create(VMProductInfo product, HttpPostedFileBase Image, HttpPostedFileBase Thumbnail)
        {
            var path1 = "~/Content/Images/ProductsImg";
            var path2 = "~/Content/Images/ProductsThum";
            var InvalideFileFormate = "";

            if (ModelState.IsValid)
            {
                var allowedExtensions = new[] { ".jpg", ".png", ".jpg", "jpeg" };
                if (Image != null)
                {
                    var ext1 = Path.GetExtension(Image.FileName).ToLower();
                    if (allowedExtensions.Contains(ext1))
                    {
                        var fileName1 = Path.GetFileName(Image.FileName);
                        path1 = Path.Combine(Server.MapPath(path1), fileName1);

                        Image.SaveAs(path1);
                    }
                    else
                    {
                        InvalideFileFormate = "Please choose only Image file";
                        ViewBag.Error       = InvalideFileFormate;
                        ViewBag.CategoryID  = new SelectList(catdb.GetAll().ToList(), "ID", "Name", product.CategoryID);
                        return(View(product));
                    }
                }

                if (Thumbnail != null)
                {
                    var ext2 = Path.GetExtension(Thumbnail.FileName).ToLower();
                    if (allowedExtensions.Contains(ext2))
                    {
                        var fileName2 = Path.GetFileName(Thumbnail.FileName);
                        path2 = Path.Combine(Server.MapPath(path2), fileName2);

                        Thumbnail.SaveAs(path2);
                    }
                    else
                    {
                        InvalideFileFormate = "Please choose only  Image file";
                        ViewBag.Error       = InvalideFileFormate;
                        ViewBag.CategoryID  = new SelectList(catdb.GetAll().ToList(), "ID", "Name", product.CategoryID);
                        return(View(product));
                    }
                }

                var         newProduct = db.Add(product);
                VMProductMG img        = new VMProductMG();
                img.ProductID     = newProduct.ID;
                img.ImgPath       = path1;
                img.ThumbnailPath = path2;
                imgdb.Add(img);


                return(RedirectToAction("Index"));
            }

            ViewBag.CategoryID = new SelectList(catdb.GetAll().ToList(), "ID", "Name", product.CategoryID);
            return(View(product));
        }
コード例 #4
0
        public ActionResult Edit(VMProductInfo product, HttpPostedFileBase Image, HttpPostedFileBase Thumbnail)
        {
            var img   = imgdb.Get(product.ID);
            var path1 = img.ImgPath;
            var path2 = img.ThumbnailPath;

            if (ModelState.IsValid)
            {
                var allowedExtensions = new[] { ".jpg", ".png", ".jpg", "jpeg" };
                if (Image != null)
                {
                    var ext1 = Path.GetExtension(Image.FileName).ToLower();
                    if (allowedExtensions.Contains(ext1))
                    {
                        var fileName1 = Path.GetFileName(Image.FileName);
                        path1 = Path.Combine(Server.MapPath("~/Content/Images/ProductsImg"), fileName1);

                        if (System.IO.File.Exists(img.ImgPath))
                        {
                            System.IO.File.Delete(img.ImgPath);
                        }

                        Image.SaveAs(path1);
                    }
                }
                else
                {
                    ViewBag.Error = "Please choose only Image file";
                }
                if (Thumbnail != null)
                {
                    var ext2 = Path.GetExtension(Thumbnail.FileName).ToLower();
                    if (allowedExtensions.Contains(ext2))
                    {
                        var fileName2 = Path.GetFileName(Thumbnail.FileName);
                        path2 = Path.Combine(Server.MapPath("~/Content/Images/ProductsThum"), fileName2);


                        if (System.IO.File.Exists(img.ThumbnailPath))
                        {
                            System.IO.File.Delete(img.ThumbnailPath);
                        }
                        Image.SaveAs(path2);
                    }
                }
                else
                {
                    ViewBag.Error = "Please choose only Image file";
                }

                img.ImgPath       = path1;
                img.ThumbnailPath = path2;
                imgdb.Update(img);
                db.Update(product);

                return(RedirectToAction("Index"));
            }

            ViewBag.Thum       = Path.GetFileName(img.ThumbnailPath);
            ViewBag.Img        = Path.GetFileName(img.ImgPath);
            ViewBag.CategoryID = new SelectList(catdb.GetAll().ToList(), "ID", "Name", product.CategoryID);
            return(View(product));
        }