[c#]代码库
<ul>
@foreach (var item in Model)
{
string title;
title = item.Title;
<li class="clearfix"><span>@Html.DisplayFor(modelItem => item.WriteTime)</span> @Html.ActionLink(title, "Details", new { id = item.ArticleID })
@if (ViewBag.username != "")
{ <div class="ArticleEidt-Show beforlogin">@Html.ActionLink("编辑", "Edit", new { id = item.ArticleID })
@Html.ActionLink("删除", "Delete", new { id = item.ArticleID })</div>}
</li>
}
</ul>
<div class="pageOptions">
@Html.Pager(Model, new PagerOptions
{
PageIndexParameterName = "id",
ShowPageIndexBox = true,
FirstPageText = "首页",
PrevPageText = "上一页",
NextPageText = "下一页",
LastPageText = "末页",
PageIndexBoxType = PageIndexBoxType.TextBox,
PageIndexBoxWrapperFormatString = "<p>请输入页数:{0}</p>",
GoButtonText = "转到"
})
</div>
public ActionResult Systems(int? id = 1)
{
UserCheck();
ArticleDAL ADAL = new ArticleDAL();
int page = (int)id;
int total = 0;
var List = ADAL.GetArticleByPredicate("Type=@0", new Object[] { 3 }, "Type", 0, 0, ref total);
var pagelist = List.AsQueryable().ToPagedList((int)page, 10);
pagelist.TotalItemCount = total;
pagelist.CurrentPageIndex = (int)(page);
return View(pagelist);
}
by: 发表于:2017-12-18 09:36:05 顶(0) | 踩(0) 回复
??
回复评论