Monojit Sarkar
Monojit Sarkar

Reputation: 2451

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 ?

Upvotes: 5

Views: 3360

Answers (1)

Nkosi
Nkosi

Reputation: 246998

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>

Upvotes: 7

Related Questions