2
Answers

how we make extensection of images to uplode in mvc

habib ullah

habib ullah

7y
741
1
if (file != null && file.ContentLength > 0)
{
var allowedExtensions = new[] { ".png", ".jpeg", ".jpg" };
file.SaveAs(Server.MapPath("~/images/") + file.FileName);
emp.imag = file.FileName;
}
is not working and not show the extension in the images 
Answers (2)