MVCContrib 寻呼机未发出我的查询字符串

发布于 2024-09-28 08:03:26 字数 205 浏览 5 评论 0原文

如何将原始查询字符串附加到寻呼机输出的末尾?我现在得到的是:

http://localhost:4988/Assets/Browse/1?page=2&Visible=false

我需要将查询字符串中的所有各种名称/值对附加到下一个/上一个链接上。

另外,上面链接中的“可见”是什么意思?我没有添加那个。

How do I get my original query string appended to the end of the pager output? All I am getting now is this:

http://localhost:4988/Assets/Browse/1?page=2&Visible=false

I need all the various name/value pairs from my query string appended onto the next/previous links.

Also, what is “visible” used for in the above link? I didn’t add that.

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

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

发布评论

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

评论(1

萌面超妹 2024-10-05 08:03:27

IIRC MVCContrib Pager 帮助程序会自动将所有查询字符串参数附加到页面链接除了 currentPage 参数之外。如果由于某种原因没有发生这种情况,您可以使用 Link 方法自己创建链接:

<%= Html.Pager(Model)
        .Link(currentPage => Url.Action("someAction", new { 
            page = currentPage, 
            someParam = "someValue", 
            someOtherParam = "someOtherValue" 
        })) 
%>

IIRC the MVCContrib Pager helper automatically appends all query string parameters to the page links in addition to the currentPage parameter. If for some reason this doesn't happen you could use the Link method to create the link yourself:

<%= Html.Pager(Model)
        .Link(currentPage => Url.Action("someAction", new { 
            page = currentPage, 
            someParam = "someValue", 
            someOtherParam = "someOtherValue" 
        })) 
%>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文