ASP.NET MVC 2 路由问题
我有以下 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不必为其定义路线。如果您使用查询字符串,则可以在操作中获取它,如下所示:
You don't have to define a route for it. If you use querystring, you can just get it in the action like this: