html.ActionLink链接没有返回预期值?

时间:2009-09-18 15:15:52

标签: asp.net-mvc actionlink

我有以下ActionLink

Html.ActionLink("Home", "Index", "Home", New With {.class = "tab"})

但它会在地址栏http://localhost:1028/?Length=4中创建以下链接,而不是我期望的http://localhost:1028/Home

我做错了导致这个吗?

1 个答案:

答案 0 :(得分:2)

你正在使用错误的ActionLink重载。尝试:

Html.ActionLink("Home", "Index", "Home", Nothing, New With {.class = "tab"})

...希望我的VB语法正确......