こんにちは、c# を使用して mvc4 でプロジェクトを行っています。
コントローラーにリストがあります
public ActionResult Gallery()
{
string folderpath = Server.MapPath("~/Content/Gallery/GalleryImages");
List<String> currentimage = new Gallery().GetGalleryName(folderpath);
return View(currentimage);
}
私は現在のイメージのアイテムを私のビューにリストしたいのですが、それがどのように可能か、私は次のことを試みています
@model List<String>
@foreach(var item in Model)
{
<p>
@item // what will be write here..
</p>
}