如何在视图中显示ArrayList

时间:2017-01-02 04:53:05

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

这里我创建一个简单的ArrayList。如何在“查看页面”中的<ul> <li>中显示所有名称

public ActionResult ArrayList()
        {
            ArrayList list = new ArrayList();
            list.Add(12);
            list.Add("Ghouse");
            list.Add(12.258);
            foreach(var xx in list)
            {

                ViewBag.ArrayList = xx;

            }
            return View();
        }

1 个答案:

答案 0 :(得分:3)

您将arrayList添加到Viewbag:

ViewBag.data = list;

然后在View中显示Viewbag:

 foreach (var list in ViewBag.data)
{
    <li>@list</li>
}