在asp.net mvc2中传递参数的问题
我有以下控制器:
public ActionResult Search(string Name, int? Friend, int? Page)
如果我使用此 url localhost/users/search/name 但这些不 localhost/users/search/name/1 和本地主机/用户/搜索/名称/1/1
I have the following controller:
public ActionResult Search(string Name, int? Friend, int? Page)
It works if I use this url localhost/users/search/name but these don't localhost/users/search/name/1 and localhost/users/search/name/1/1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须定义额外的路线:
You have to define additional route: