这里我创建一个简单的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();
}
答案 0 :(得分:3)
您将arrayList添加到Viewbag:
ViewBag.data = list;
然后在View中显示Viewbag:
foreach (var list in ViewBag.data)
{
<li>@list</li>
}