我有以下 ActionLink 位于注册控制器的主页中(Index.cshtml)
@Html.ActionLink("terms of service", Url.Action(MVC.Home.Terms()),
null, new { target="_blank" })
生成以下 URL。为什么要添加“注册”?就好像注册页面中拥有自己的控制器的链接正在将注册控制器预先附加到该视图中的任何链接?
http://localhost/register/terms-of-service
routes.MapRoute(
"Terms",
"terms-of-service",
new { controller = "Home", action = "Terms" }
);
public partial class HomeController : SiteController
{
public virtual ActionResult Terms()
{
return View(new SiteViewModel());
}