views:

56

answers:

1

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?

+2  A: 

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...

Craig Stuntz