我正在创建一个 MVC4 应用程序。我有一个小问题。我的代码是
<li id="tabHeader_2">@Html.ActionLink("Contract", "Contract", "Home", new { id = "lnk_contract" })</li>
我正在获取网址
http://localhost:2355/Home/Contract?Length=4
我希望我的网址为
http://localhost:2355/Home/Contract
我的想法是
routes.MapRoute(
name: "Default",
url: "{controller}/{action}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
如果你有答案请帮助我...