从多条路线调用什么路线

时间:2014-12-10 17:49:27

标签: asp.net-mvc asp.net-mvc-4 routing asp.net-mvc-routing

asp.net mvc路由如何从

中选择要使用的路由
[Route("{language}/Index-English", Name = "Index.EN")]
[Route("{language}/Index-German", Name = "Index.DE")]
[Route("{language}/Index-French", Name = "Index.FR")]
[Route("{language}/Index-Italian", Name = "Index.IT")]
public ActionResult Index(string language)
{
    return View();
}

我知道我可以根据路由名称生成url,但是如果我不想使用它,我怎样才能使用Url.Action生成一个链接,它将调用路径Index.FR而不是Index.DE

0 个答案:

没有答案