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