我的 Web 应用程序(ASP.NET MVC 3)中有一个文件夹,其中包含一组图像。我想使用 foreach 循环遍历文件夹以获取站点相对路径,然后我可以将其附加到图像标签。
例子
<div class="slides">
@foreach(string file in ?????)
{
<img src="@file" alt="filename without extension">
}
</div>
我该怎么做呢?
注意:我当前的 foreach 循环正在尝试查看物理路径并返回此错误
Could not find a part of the path 'C:\Content\Images\Photography\Slides\'.