在Controllers里已经定了action 里面包含了以下ViewData
public ActionResult Index()
{
List<string> str1 = new List<string>();
List<string> str2 = new List<string>();
str1.Add("aaa");
str1.Add("bbb");
str2.Add("123");
str2.Add("321");
ViewData["num1"] = str1;
ViewData["num2"] = str2;
return View();
}
在Index.aspx里面怎么将两个list遍历出来放进表格里
慕容3067478