public async Task <IActionResult> Create([Bind("SecondAdditional,Id,ImagePath,ImageText,Title,SubTitle,Duration,Code,Price,AboutTourText,AboutTourNumber,TourImage,TourName,TourInformation,TourVideo,TourCheckIn,TourText,TourTime,TourAdditional,Number,SecondNumber,Email,SiteAddress,Address")] QubaPage qubaPage, IFormFile TourImage) { CustomDateTimeFile customDateTimeFile = new CustomDateTimeFile(); string fileName = customDateTimeFile.GetFileName(TourImage.FileName); if (ModelState.IsValid) { qubaPage.TourImage = fileName; if (_IsAcceptedFormat(TourImage.ContentType)) { string path = Path.Combine(hostingEnvironment.WebRootPath, "images", fileName); byte[] data = new byte[TourImage.Length]; using (FileStream fileStream = new FileStream(path, FileMode.Create)) { await TourImage.CopyToAsync(fileStream); } } await _context.AddAsync(qubaPage); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(qubaPage)); }
public async Task <IActionResult> Edit(int id, [Bind("SecondAdditional,Id,ImagePath,ImageText,Title,SubTitle,Duration,Code,Price,AboutTourText,AboutTourNumber,TourImage,TourName,TourInformation,TourVideo,TourCheckIn,TourText,TourTime,TourAdditional,Number,SecondNumber,Email,SiteAddress,Address")] QubaPage qubaPage) { if (id != qubaPage.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(qubaPage); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!QubaPageExists(qubaPage.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(qubaPage)); }