首页 > 代码库 > 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 前台遍历
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。