在 MVC Contrib 寻呼器中显示页面链接

发布于 2024-10-22 02:44:21 字数 51 浏览 1 评论 0原文

有没有办法使用寻呼机助手显示页码链接?我希望用户单击链接并转到特定页码,而不必逐页浏览。

Is there a way to show the page number links with the Pager helper? I would like the user to click a link and go to a specific page number, not having to go page through page.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

看透却不说透 2024-10-29 02:44:21

不,开箱即用的 MVCContrib 寻呼机不支持这一点。您将需要构建一个自定义寻呼机来支持这一点。

No, that's not supported by the MVCContrib pager out of the box. You will need to build a custom pager to support this.

不羁少年 2024-10-29 02:44:21

需要工作但这应该让你开始

@using MvcContrib.UI.Pager
@using MvcContrib.Pagination
@model IPagination   

@{
int linkCount = 1;
for (int i = 0; i < Model.TotalPages && linkCount<=10; i++)
{
    linkCount++;
      <a href="@ViewContext.Controller.ValueProvider.GetValue("controller").RawValue?Page=@(i + 1)">@(i + 1) </a>
}
}

Needs Work but this should get you started

@using MvcContrib.UI.Pager
@using MvcContrib.Pagination
@model IPagination   

@{
int linkCount = 1;
for (int i = 0; i < Model.TotalPages && linkCount<=10; i++)
{
    linkCount++;
      <a href="@ViewContext.Controller.ValueProvider.GetValue("controller").RawValue?Page=@(i + 1)">@(i + 1) </a>
}
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文