在Controllers里已经定了action 里面包含了以下ViewDatapublic 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遍历出来放进表格里
1 回答
慕容3067478
TA贡献1773条经验 获得超3个赞
MVC 要追求的就是在页面里不写代码。
要想将那个放进页面。可在把标签全在控制器里写好。如
控制器里写:更好的方法是将其写在其它的类里,控制器里只调用几个方法
string str="<table cellpadding='0' cellspacing='0' border='0'>"
for(int i=0;i<str1.count;i++)
{
str+="<tr><td>"+str1[i]+"</td><td>"+str2[i]+"</td></tr>"
}
str+="</table>";
ViewData["something"]=str;
前台页面里,写上
<%=Server.HtmlDecode(ViewData["something"].ToString()) %>
就告成了。
- 1 回答
- 0 关注
- 329 浏览
添加回答
举报
0/150
提交
取消