简体   繁体   中英

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 ?

Reference Attribute Routing in ASP.NET MVC 5 - Route Names

You can specify a name for a route, in order to easily allow URI generation for it.

For example, for the following route:

[RoutePrefix("Home")]
public class HomeController : Controller {
    [Route("Users/about", Name = "Users_About")]
    [Route("Users/WhoareWe")]
    [Route("Users/OurTeam")]
    [Route("Users/aboutCompany")]
    public ActionResult GotoAbout() {
        return View();
    }
}

you could generate a link using Url.RouteUrl :

<a href="@Url.RouteUrl("Users_About")">About</a>

which would resolve to

<a href="home/users/about">About</a>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM