0
I have the following code in my View that takes the path of the photo, and saves in the bank.
@using (Html.BeginForm("Upload", "PessoaFoto", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
@Html.Hidden("idPessoa", Request.QueryString["idPessoa"])
<input type="file" name="file" />
<input type="submit" />
}
how do I list these photos in the View as I add?
What I want is that as I add the photos in my view they appear so that I can view them..
Welcome to Stack Overflow. Your question is a little broad. You could post the code you are using and explain a little more what you want. Taking advantage, see [Ask] and do a [tour], to learn a little more about the operation of the site to increase your chances of getting a good response.
– Randrade