为什么不将默认变量 的值作为查询字符串myVar
的一部分添加到出站 URL:
routes.MapRoute("MyRoute", "{controller}/{action}",
new { myVar = 1 });
索引.cshtml:
@Html.ActionLink("click me", "CustomVariable", "Home",
new { myVar = 1, newMyVar = 1000 }, null);
从上面的路由系统生成:
<a href="/Home/CustomVariable?newMyVar=1000">click me</a>
谢谢