I created the following method to save an image to the database
public ActionResult enviaArquivo(UsurioViewModel arq)
{
try {
string nomeArquivo ="";
if (arq.Arquivo != null && arq.Arquivo.ContentLength > 0)
{
nomeArquivo= Path.GetFileName(arq.Arquivo.FileName);
var caminho = Path.Combine(Server.MapPath("~/images"), nomeArquivo);
arq.File.SaveAs(caminho);
arq.CaminhoArquivo = caminho;
}
ViewBag.Mensagem = "Arquivo: " + nomeArquivo+ ", enviado com sucesso.";
}
catch (Exception ex)
{
ViewBag.Mensagem("Erro:" + ex);
}
return View();
}
Now I need to create a method to retrieve the server image and display it in html, read some tutorials and watch some videos, but it is still unclear to me how to do it. If anyone can help me, I'll be very grateful !!! :)