0
我有以下ActionLink的html.ActionLink鏈接不返回預期值?
Html.ActionLink("Home", "Index", "Home", New With {.class = "tab"})
但在地址欄中http://localhost:1028/?Length=4,而不是我所期望它爲http://localhost:1028/Home創建以下鏈接。
我做了什麼錯誤導致這個?
我有以下ActionLink的html.ActionLink鏈接不返回預期值?
Html.ActionLink("Home", "Index", "Home", New With {.class = "tab"})
但在地址欄中http://localhost:1028/?Length=4,而不是我所期望它爲http://localhost:1028/Home創建以下鏈接。
我做了什麼錯誤導致這個?
您正在使用ActionLink的錯誤超載。嘗試:
Html.ActionLink("Home", "Index", "Home", Nothing, New With {.class = "tab"})
...希望我有我的VB語法正確的...