我正在创建一个 MVC3 Razor 应用程序。我使用了文件上传。我需要保存并显示图像。上传的图像不会显示在 Visual Studio 的文件夹中,但是当我从 Windows 打开相同的文件夹时,会显示图像。之后上传工作。
我的控制器:
public ActionResult Save(HttpPostedFileBase attachments)
{
var fileName = Path.GetFileName(attachments.FileName);
var physicalPath = Path.Combine(Server.MapPath("~/App_Data"), fileName);
attachments.SaveAs(physicalPath);
string fnn = fileName;
ViewBag.fnn = fnn;
return Content("");
}