序号 |
文章标题
|
作者
|
文章来源
|
51 |
2011年吴起县人民政府工作报告
|
Webdiyer
|
吴起政府网
|
52 |
吴起采油厂原油年产突破200万吨文艺晚会
|
Webdiyer
|
吴起热线
|
53 |
[新闻调查]吴起:免费教育实验
|
Webdiyer
|
吴起热线
|
View:
@model PagedList<article>
<div id="articles">
@Html.Partial("_ArticleTable", Model)
<div style="width:100%;overflow:auto;">
<div style="float:right">跳转到第<select id="pib"></select>页</div>
@Ajax.Pager(Model).Options(o => o.SetId("mypager").SetPageIndexParameterName("id").SetPageIndexBoxId("pib").SetPagerItemTemplate("{0} ")).AjaxOptions(a => a.SetUpdateTargetId("articles").EnablePartialLoading())
</div>
</div>
@section Scripts{@{Html.RegisterMvcPagerScriptResource();}}
_ArticleTable.cshtml:
@model PagedList<Article>
<table class="table table-bordered table-striped">
<tr>
<th class="nowrap">序号</th>
<th>
@Html.DisplayNameFor(model => model.Title)
</th>
<th>
@Html.DisplayNameFor(model => model.PubDate)
</th>
<th>
@Html.DisplayNameFor(model => model.Author)
</th>
<th>
@Html.DisplayNameFor(model => model.Source)
</th>
</tr>
@{ int i = 0;}
@foreach (var item in Model)
{
<tr>
<td>@(Model.StartItemIndex + i++)</td>
<td>
@Html.DisplayFor(modelItem => item.Title)
</td>
<td>
@Html.DisplayFor(modelItem => item.PubDate)
</td>
<td>
@Html.DisplayFor(modelItem => item.Author)
</td>
<td>
@Html.DisplayFor(modelItem => item.Source)
</td>
</tr>
}
</table>
Model:
public class Article
{
[Display(Name="文章编号")]
public int ID { get; set; }
[Display(Name="文章标题")]
[MaxLength(200)]
public string Title { get; set; }
[Display(Name = "文章内容")]
public string Content { get; set; }
[Display(Name = "发布日期")]
public DateTime PubDate { get; set; }
[Display(Name = "作者")]
[MaxLength(20)]
public string Author { get; set; }
[Display(Name = "文章来源")]
[MaxLength(20)]
public string Source { get; set; }
}
Controller:
public ActionResult AjaxPartialLoading(int id = 1)
{
using (var db = new DataContext())
{
return View(db.Articles.OrderByDescending(a => a.PubDate).ToPagedList(id, 5));
}
}