public async Task <ActionResult> Register(RegisterViewModel model) { if (ModelState.IsValid) { string imagePath = "asdfasdf"; string dir = imagePath; int widthBig = 2560; // Імя фалу із зображенням string filePhoto = string.Empty; filePhoto = Guid.NewGuid().ToString() + ImageWorker.GetImageType(model.Image); byte[] bytesPhoto = ImageWorker.GetImageBytesFromBase64(model.Image); string imageType = ImageWorker.GetImageType(model.Image); Bitmap imageBig = ImageWorker.SaveImageFromBytesTry(bytesPhoto, widthBig); if (imageBig != null) { string fileName = widthBig + "_" + filePhoto; string pathSaveFile = Path.Combine(dir, fileName); imageBig.Save(pathSaveFile, ImageWorker.GetImageFormat(imageType)); } var result = await _accountProvider.RegisterAsync(model); if (result) { // For more information on how to enable account confirmation and password reset please visit https://go.microsoft.com/fwlink/?LinkID=320771 // Send an email with this link // string code = await UserManager.GenerateEmailConfirmationTokenAsync(user.Id); // var callbackUrl = Url.Action("ConfirmEmail", "Account", new { userId = user.Id, code = code }, protocol: Request.Url.Scheme); // await UserManager.SendEmailAsync(user.Id, "Confirm your account", "Please confirm your account by clicking <a href=\"" + callbackUrl + "\">here</a>"); return(RedirectToAction("Index", "Home")); } //AddErrors(result); } // If we got this far, something failed, redisplay form return(View(model)); }