虎克的博客

Enthusiasm Biogeography-Biodiversity Informatics-Data Sciences

控制器代码

public ActionResult Index()
{    
  DataTable dt = new DataTable(); 
    return View(dt);

}

视图代码

Inherits="System.Web.Mvc.ViewPage<System.Data.DataTable>"
显示数据
<% foreach (System.Data.DataRow row in Model.Rows)
           { %>
            <%= row["columnName"].ToString() %>
        <%}%>