我用
@Html.ActionLink("Read More", "About", "Home", new {@class="button"})
在我的 Asp.NET MVC 网站中,但结果我的链接看起来像这样,
http://localhost:43988/Home/About?Length=4
.
为什么我?Length=4
的链接中有这部分?
我用
@Html.ActionLink("Read More", "About", "Home", new {@class="button"})
在我的 Asp.NET MVC 网站中,但结果我的链接看起来像这样,
http://localhost:43988/Home/About?Length=4
.
为什么我?Length=4
的链接中有这部分?
用这个
@Html.ActionLink("Read More", "About", "Home", null, new {@class="button"})
没有过载,如下所示,请参阅msdn docs
@Html.ActionLink Method (HtmlHelper, String, String, String, Object)
因此使用
@Html.ActionLink Method (HtmlHelper, String, String, String, Object, Object)