我不能使用以下命名空间PagedList来使用剃刀
@model PagedList.IPagedList< PhoneBook.Models.Contact>在最顶层的Index.cshtml
@model PagedList.IPagedList< PhoneBook.Models.Contact>在最顶层的Index.cshtml
我已经安装了PagedList,我已经在我的Controller中使用了下面的代码
using PagedList;
解决方法
BuildStarted引用或存在同时使用,
在控制器中
using PagedList; using PagedList.MVC;
并在视图中使用
@model PagedList.IPagedList<PhoneBook.Models.Contact> @using PagedList; @using PagedList.MVC;
并使用分页
@Html.PagedListPager(Model,page => Url.Action("Index",new { page = page }))
对不起,英文不好