ASP.NET MVC 2 路由问题

发布于 2024-10-13 20:08:06 字数 456 浏览 1 评论 0原文

我有以下 URL:

http://localhost/PagingController/ShowPage?pageNumber=3

当用户单击此链接,他必须重定向到以下 URL:

http://localhost/MyController/ < strong>MyAction?pageNumber=3

如何为这些 URL 创建映射规则?我不明白如何使用 URL 模板(例如 .../{controller}/{action})获取 pageNumber 参数,

谢谢。

I have the following URL:

http://localhost/PagingController/ShowPage?pageNumber=3

When user clicks this link he must be redirected to the following URL:

http://localhost/MyController/ MyAction?pageNumber=3

How can I create a mapping rule for these URLs? I don't understand how to get pageNumber parameter with URL templates such as .../{controller}/{action}

Thanks.

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

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

发布评论

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

评论(1

双马尾 2024-10-20 20:08:06

您不必为其定义路线。如果您使用查询字符串,则可以在操作中获取它,如下所示:

public ActionResult MyAction(int pageNumber)

You don't have to define a route for it. If you use querystring, you can just get it in the action like this:

public ActionResult MyAction(int pageNumber)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文