Asp.Net MVC 使用DataTable
程序员文章站
2022-06-11 22:31:32
...
Asp.Net MVC 使用DataTable
后台controller:
public ActionResult query()
{
DataTable dt = stu.GetStudentList();
return View(dt);
}
前台 query.cshtml页面:
@using WebApplication3.Models
@using System.Data
@{
ViewBag.Title = "query";
}
<script src="~/Scripts/addUser.js" type="text/javascript"></script>
<script src="~/Scripts/jquery-1.10.2.js" type="text/javascript"></script>
<table class="table">
<caption>学生信息表</caption>
<thead>
<tr>
@foreach (DataColumn col in Model.Columns)
{
<th>@col.ColumnName]</th>
}
</tr>
</thead>
<tbody>
@foreach (DataRow row in Model.Rows)
{
<tr>
<td >@row["stuNo"]</td>
<td >@row["name"]</td>
<td >@row["xibie"]</td>
<td >@row["sex"]</td>
<td >@row["age"]</td>
<td><button type="button" class="btn btn-primary edit" value="@row["stuNo"]">编辑</button></td>
<td><button type="button" class="btn btn-primary delete">删除</button></td>
</tr>
}
</tbody>
</table>
推荐阅读
-
asp.net core 中async/await 使用
-
C#使用Parallel处理数据同步写入Datatable并使用BulkInsert批量导入数据库
-
跟我学: 使用 fireasy 搭建 asp.net core 项目系列之一 —— 开篇
-
MVC使用Newtonsoft无需实体类,实现JSON数据返回给前端页面使用
-
ASP.NET使用Ajax如何返回Json对象的示例方法介绍
-
Asp.net MVC3实现JSONP
-
ASP.NET Core扩展库之Http日志的使用详解
-
ASP.NET MVC 开源建站系统
-
ASP.NET Core MVC 过滤器的使用方法介绍
-
ASP.NET Aries 高级开发教程:使用存储过程(番外篇)