码迷,mamicode.com
首页 > 其他好文 > 详细

动态生成表格制作

时间:2016-03-23 13:06:49      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

   @Html.Raw("<table><tr>")
           @for (int i = 0; i < allRoles.Count; i++)
           {
               string strId = "ckb_" + allRoles[i].Id;
               if (i%3==0)
               {
                   @Html.Raw("</tr><tr>")
               }
            <td>
                <input type="checkbox" name="@strId" id="@strId" value="@allRoles[i].Id" />
                <label for="@strId">@allRoles[i].RoleName</label>
            </td>
              
           }
           @Html.Raw("</tr></table>")

 

动态生成表格制作

标签:

原文地址:http://www.cnblogs.com/shuai7boy/p/5310402.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!