MVC ActionLink 如何指定文本、actionname、控制器和 htmlattributes

发布于 2024-12-27 13:44:44 字数 301 浏览 2 评论 0原文

我一直在尝试做一个像这样的actionlink:

<li>@Html.ActionLink("Home", "Index", "Invoice", new { id = "homelink" })</li>

所以我拥有的是linkText,一个actionname,一个控制器名称和一个链接的id。

然而,没有与此匹配的签名。最接近的一个具有控制器名称和 html 属性之间的路由值。不过,我没有任何需要放入其中的路线值。

有人可以告诉我如何最好地解决这个问题吗?

I have been trying to do an actionlink like:

<li>@Html.ActionLink("Home", "Index", "Invoice", new { id = "homelink" })</li>

So what I have is linkText, an actionname, a controller name and an id for the link.

However there is no signature that matches this. The closest one has routevalues between the controller name and the htmlattributes. I don't have any routevalues I need to put in there though.

Can someone please tell me how to best get around this?

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

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

发布评论

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

评论(2

独孤求败 2025-01-03 13:44:44

将路由值设置为 null 就可以了!

@Html.ActionLink("Home", "Index", "Invoice", null, new { id = "homelink" })

Set route values to null and your're good to go!

@Html.ActionLink("Home", "Index", "Invoice", null, new { id = "homelink" })
莫多说 2025-01-03 13:44:44

描述

假设我明白您的要求,该

示例

@Html.ActionLink("LinkText", "ActionName", "ControllerName", 
                  null, new { id="homelink" })

更多信息

Description

Assuming i understand what you are asking for, there is an overload for that

Sample

@Html.ActionLink("LinkText", "ActionName", "ControllerName", 
                  null, new { id="homelink" })

More Information

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