首页 > 代码库 > MVC 后台DataTable 前台遍历

MVC 后台DataTable 前台遍历

      /// <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>    }

 

MVC 后台DataTable 前台遍历