Есть ли способ добавить изображение по умолчанию в HttpPostedFileBase, если пользователь не загружает его? - PullRequest
0 голосов
/ 24 апреля 2019

Я m trying to add a default image from the ~/Content/Images/image.jpg to the HttpPostedFileBase if used doesn т предоставить изображение.

  if (imageRegisterView?.ContentLength == null)
                {
                    imageRegisterView.SaveAs(Server.MapPath("~/Content/Images/adult-1260380_640.jpg"));
                }
...