Reputation: 5348
I have the following ActionLink
Html.ActionLink("Home", "Index", "Home", New With {.class = "tab"})
But it creates the following Link in the address bar http://localhost:1028/?Length=4 as opposed to what I expect it to be as http://localhost:1028/Home.
Have I done something wrong to cause this?
Upvotes: 0
Views: 266
Reputation: 126547
You're using the wrong overload of ActionLink. Try:
Html.ActionLink("Home", "Index", "Home", Nothing, New With {.class = "tab"})
...hoping I've got my VB syntax right...
Upvotes: 2