您好我正在尝试显示目录中的所有图像,我不知道图片的名称,更多将通过时间添加。 我有这个,但“@url”给了我一个不存在,如果我把它取下所有图像出现,但只是图像加载错误。 根文件夹结构: ScreenShot of the error shown in Chrome
@foreach (var imgPath in Directory.GetFiles(Server.MapPath("~/Images"), "*.png"))
{
var img = new FileInfo(imgPath);
<img src="@Url.Content(String.Format("~/Images/{0}", img.Name))" />
}