首页 > 技术文章 > MVC 后台DataTable 前台遍历

youmingkuang 2016-09-09 17:58 原文

      /// <summary>
        /// 多级审批流展示
        /// </summary>
        /// <returns></returns>
        public ActionResult AddMoreflow()
        {
            string userid = CommConst.CurrentAccountId;
            DataSet ds = CheckFlowService.LCheckFlowBLL.GetNowFlowList(userid);
            DataTable dt = ds.Tables[0];
            return View(dt);
        }

前台

@using System.Data;   

 @foreach (DataRow item in Model.Rows)
    {
        <table class="table table-bordered">
            <tr>
                <td>流程提交人</td>
                <td>@item["formid"]</td>
                <td>处理状态</td>
                <td>@item["state"]</td>
            </tr>
            <tr>
                <td>内容</td>
                <td colspan="3">@item["checkcontent"]</td>
            </tr>
            <tr>
                <td>时间</td>
                <td colspan="3">@item["checkinserttime"]</td>
            </tr>
        </table>
    }

 

推荐阅读