从控制器列出集合以查看

时间:2013-10-04 05:02:54

标签: c# asp.net-mvc-4

您好我正在使用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>
 }

0 个答案:

没有答案