分页的优点
1.分页技术是把数据全部查询出来,然后再进行分页
2.分页技术可以,降低带宽使用,提高访问速度
具体代码
页面代码
@{
ViewBag.Title = "Index";
}
<h2> 666</h2>
<div class="input-group">
<label>名称:</label>
<input type="text" class="form-control" id="txtCondName" value="@ViewBag.name"/>
<input type="button" id="btnSearch" value="搜索" onclick="page(1);" />
</div>
<table class="table table-bordered">
<thead>
<tr>
<th>编号</th>
<th>名称</th>
<th>备注</th>
</tr>
</thead>
<tbody>
@foreach (var item in Model)
{
<tr>
<th>@item.ID</th>