标签: asp.net asp.net-mvc attributerouting
在MVC5的属性路由功能中,“名称”参数的属性路由语法中有一个选项,例如: [Route("Register/SetPassword", Name="SetPasswordGet")]
[Route("Register/SetPassword", Name="SetPasswordGet")]
我的问题是这个“Name =”SetPasswordGet“参数是什么?以及如何使用它?
答案 0 :(得分:1)
您可以将名称用作RedirectToRoute()方法中的参数,请参阅msdn和this question