public ActionResult Profile(ProfileViewModel model) { if (ModelState.IsValid) { string photoURL = model.Upload; if (model.Image != null) { // получаем имя файла string fileName = System.IO.Path.GetFileName(model.Image.FileName); photoURL = "/Content/UserImages/" + fileName; // сохраняем файл в папку Files в проекте model.Image.SaveAs(Server.MapPath(photoURL)); } var user = _usersProvider.EditingProfile(model.Surname, model.Name, model.Middle_name, model.Phone, model.Email, model.Comments, model.Password, photoURL); UserContext.SetUser(user); } return(View(model)); }