In previous versions of ASP.NET, an uploaded file was represented by an instance of
System.Web.HttpPostedFileBase
. This has been replaced in ASP.NET 5 (Core 1.0) by IFormFile
, which is found in theMicrosoft.AspNet.Http
namespace or Microsoft.Extensions.PlatformAbstractions package. It shares a few of the same properties and methods as its predecessor, but it also has its differences, as shown by example.- Firstly we create a ViewModel for our Form:This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
namespace OpenBizz.ViewModels { public class ProductViewModel { [Required] [StringLength(27,MinimumLength =7)] public string ProductName { get; set; } [Range(0,9999999999999999)] public decimal ProductPrice { get; set; } [Required] [StringLength(500, MinimumLength = 19)] public string ProductDescription { get; set; } [Range(0,20000)] public int QuantityOnHand { get; set; } [Required] [DataType(DataType.Date)] public DateTime DateOut { get; set; } [Required] [Display(Name = "Select Warehouse")] public int WarehouseID { get; set; } [Required] public List<Warehouse> Warehouses { get; set; } [Required] public List<ProductCategory> Categories { get; set; } [Required] [Display(Name = "Select Category")] public int CategoryID { get; set; } [Required(ErrorMessage ="Please Upload a Valid Image File")] [DataType(DataType.Upload)] [Display(Name ="Upload Product Image")] [FileExtensions(Extensions ="jpg,png,gif,jpeg,bmp,svg")] public IFormFile ProductImage { get; set; } } }
- Then Create our actual Form in Create.cstmlThis file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
@model OpenBizz.ViewModels.ProductViewModel <h2>Create</h2> <form asp-controller="Products" asp-antiforgery="true" asp-action="Create" enctype="multipart/form-data" method="post"> <div class="form-horizontal"> <h4>Product</h4> <hr /> <div asp-validation-summary="ValidationSummary.ModelOnly" class="text-danger"></div> <div class="form-group"> <label asp-for="ProductName" class="control-label col-md-2"></label> <div class="col-md-10"> <input asp-for="ProductName" class="form-control" /> <span asp-validation-for="ProductName" class="text-danger"></span> </div> </div> <div class="form-group"> <label asp-for="ProductDescription" class="control-label col-md-2"></label> <div class="col-md-10"> <textarea asp-for="ProductDescription" class="form-control"></textarea> <span asp-validation-for="ProductDescription" class="text-danger"></span> </div> </div> <div class="form-group"> <label asp-for="CategoryID" class="control-label col-md-2"></label> <div class="col-md-10"> <select asp-for="CategoryID" asp-items="@(new SelectList(Model.Categories, "CategoryID", "CategoryName"))" class="form-control"></select> <span asp-validation-for="CategoryID" class="text-danger"></span> </div> </div> <div class="form-group"> <label asp-for="ProductPrice" class="control-label col-md-2"></label> <div class="col-md-10"> <input asp-for="ProductPrice" class="form-control" /> <span asp-validation-for="ProductPrice" class="text-danger"></span> </div> </div> <div class="form-group"> <label asp-for="QuantityOnHand" class="control-label col-md-2"></label> <div class="col-md-10"> <input asp-for="QuantityOnHand" class="form-control" /> <span asp-validation-for="QuantityOnHand" class="text-danger"></span> </div> </div> <div class="form-group"> <label asp-for="WarehouseID" class="control-label col-md-2"></label> <div class="col-md-10"> <select asp-for="WarehouseID" asp-items="@(new SelectList(Model.Warehouses, "WarehouseID", "WarehouseName"))" class="form-control"></select> <span asp-validation-for="WarehouseID" class="text-danger"></span> </div> </div> <div class="form-group"> <label asp-for="DateOut" class="control-label col-md-2"></label> <div class="col-md-10"> <input asp-for="DateOut" class="form-control datepicker-inline" /> <span asp-validation-for="DateOut" class="text-danger"></span> </div> </div> <div class="form-group"> <label asp-for="ProductImage" class="control-label col-md-2"></label> <div class="col-md-3"> <input asp-for="ProductImage" class="form-control" /> <span asp-validation-for="ProductImage" class="text-danger"></span> </div> </div> <div class="form-group"> <div class="col-md-offset-2 col-md-10"> <input type="submit" value="Create" class="btn btn-default" /> </div> </div> </div> </form>
- Now we move to our Products Controller:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
namespace OpenBizz.Controllers.Web { public class ProductsController : Controller { private ILogger<ProductsController> _logger; private IRepository<Product> _products; private IRepository<Warehouse> _warehouses; private IRepository<ProductCategory> _categories; private IApplicationEnvironment _appEnvironment; public ProductsController(IApplicationEnvironment appEnvironment, IRepository<Product> products, IRepository<Warehouse> warehouses, IRepository<ProductCategory> categories, ILogger<ProductsController> logger) { _products = products; _warehouses = warehouses; _categories = categories; _appEnvironment = appEnvironment; _logger = logger; } public IActionResult Index() { try { return View(_products.GetAll().ToList()); } catch (Exception ex) { _logger.LogDebug(ex.Message); throw; } } public IActionResult Create() { try { ProductViewModel p = new ProductViewModel() { Categories = _categories.GetAll().ToList(), Warehouses = _warehouses.GetAll().ToList() }; return View(p); } catch (Exception ex) { _logger.LogDebug(ex.Message); throw; } } [HttpPost] [ValidateAntiForgeryToken] public IActionResult Create(ProductViewModel product, IFormFile ProductImage) { try { if (ModelState.IsValid) { if (ProductImage != null && ProductImage.Length > 0) { var parsedContentDisposition = ContentDispositionHeaderValue.Parse(ProductImage.ContentDisposition); string FilePath = parsedContentDisposition.FileName.Trim('"'); string FileExtension = Path.GetExtension(FilePath); var uploadDir = _appEnvironment.ApplicationBasePath + $@"\Uploads\Images\{product.ProductName}\"; if(!Directory.Exists(uploadDir)) { Directory.CreateDirectory(uploadDir); } var imageUrl = uploadDir + product.ProductName + FileExtension; ProductImage.SaveAs(imageUrl); } var newProduct = Mapper.Map<Product>(product); _products.Add(newProduct); if (_products.SaveAll()) { RedirectToAction("Index"); } } ProductViewModel p = new ProductViewModel() { Categories = _categories.GetAll().ToList(), Warehouses = _warehouses.GetAll().ToList() }; return View(p); } catch (Exception ex) { _logger.LogDebug(ex.Message); throw; } } } }