How to generate URL for the action with attribute routing in Asp.Net MVC
问题 public class HomeController : Controller { [Route("Users/about")] [Route("Users/WhoareWe")] [Route("Users/OurTeam")] [Route("Users/aboutCompany")] public ActionResult GotoAbout() { return View(); } } I have many routes defined for action GotoAbout() . How to create route URL in razor page programmatically when generate URL for action like home/users/about ? 回答1: Reference Attribute Routing in ASP.NET MVC 5 - Route Names You can specify a name for a route, in order to easily allow URI