I would like to display all my photos in the "Images_uploads" folder in MVC View. Thus, its display on the site. But nothing works.
{ <form method="post" action="/Images_upload" enctype="multipart/form-data"> <input name="ImageUploaded" type="file"> <input type="submit"> </form> <List<String> li = ViewData["~/images_upload"] as List<String>; foreach (var picture in li) <img src = '@Url.Content("~/images_upload" + picture)' alt="Hejsan" /> }
c # asp.net-mvc asp.net-mvc-4
Chris reed
source share