html.ActionLink 链接未返回预期值?

发布于 2024-08-05 14:30:53 字数 371 浏览 3 评论 0原文

我有以下 ActionLink

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

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

我是否做错了什么导致了这种情况?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沉默的熊 2024-08-12 14:30:53

您使用了错误的 ActionLink 重载。尝试:

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

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

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文