I have the following code in my View that takes the path of the photo, and saves it 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 View as I add them?
What I want is that as I add the photos in my view they appear so that I can see them.