asp.net-mvc-3 – 不能使用NuGet PagedList ASP.NET MVC#查看

前端之家收集整理的这篇文章主要介绍了asp.net-mvc-3 – 不能使用NuGet PagedList ASP.NET MVC#查看前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我不能使用以下命名空间PagedList来使用剃刀
@model PagedList.IPagedList< PhoneBook.Models.Contact>在最顶层的Index.cshtml

我已经安装了PagedList,我已经在我的Controller中使用了下面的代码

using PagedList;

控制器页面中没有错误,但为什么不使用Index.cshtml(View)中的命名空间?请帮忙..

解决方法

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 }))

对不起,英文不好

原文链接:https://www.f2er.com/aspnet/252115.html

猜你在找的asp.Net相关文章