如题,在视图中先做好表格的第一行,然后在Action中根据数据的数量生成表格怎么实现?下面是Action代码:
1 public ActionResult SampleList() 2 { 3 ViewBag.Table = "<td>hello</td><td>word</td>"; 4 return View(); 5 }
下面是视图代码:
1 <table> 2 <tr> 3 <th>first</th><th>second</th> 4 </tr> 5 @{ 6 Response.Write(ViewBag.Table);//用这个就会显示在页面的最上边而不是插入表格 7 } 8 </table>
请问怎么解决,或者有没有其它方法实现?不想用js
@Html.Raw(@ViewBag.Table)
谢谢