asp.net mvc viewData 遍历集合
在Controllers里已经定了action里面包含了以下ViewDatapublicActionResultIndex(){List<string>str1=newL...
在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遍历出来放进表格里 展开
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遍历出来放进表格里 展开
2个回答
展开全部
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()) %>
就告成了。
要想将那个放进页面。可在把标签全在控制器里写好。如
控制器里写:更好的方法是将其写在其它的类里,控制器里只调用几个方法
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()) %>
就告成了。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |