您好我正在使用c#
在mvc4中完成我的项目我的控制器中有列表
public ActionResult Gallery()
{
string folderpath = Server.MapPath("~/Content/Gallery/GalleryImages");
List<String> currentimage = new Gallery().GetGalleryName(folderpath);
return View(currentimage);
}
我想在我的视图中列出currentimage中的项目,如何可能,我正在尝试以下
@model List<String>
@foreach(var item in Model)
{
<p>
@item // what will be write here..
</p>
}