如何操作 Html.ActionLink 以显示到另一个控制器的链接?

发布于 2024-08-23 11:07:57 字数 454 浏览 5 评论 0原文

在 HomeController 的详细信息视图中,我想创建一个指向 MiscController 上的电子邮件视图的链接。此外,我需要向查询字符串添加一个项目。

我想创建一个类似于以下内容的链接:

<a href="http://www.blah.com/misc/SendMail?id=6">
    <font size="1">Report problems</font>
</a>

我已尝试以下操作:

<% Html.ActionLink("<font size=\"1\">Report</font>", "SendMail", "Misc", Model.ImageID, new object()); %>

它没有返回任何链接。我缺少什么?

In the Details view of the HomeController, I'd like to create a link to the Email view on the MiscController. In addition, I need to add an item to the QueryString.

I'd like to create a link that goes something like:

<a href="http://www.blah.com/misc/SendMail?id=6">
    <font size="1">Report problems</font>
</a>

I've tried the following:

<% Html.ActionLink("<font size=\"1\">Report</font>", "SendMail", "Misc", Model.ImageID, new object()); %>

It returned no link. What am I missing?

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

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

发布评论

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

评论(1

绅刃 2024-08-30 11:07:57

首先,您错过了 <% 之后的 =。这就是为什么它没有输出任何内容。

另外,您传递 routeValues 参数的方式是错误的。

它应该是:

<%=Html.ActionLink("<font size=\"1\">Report</font>", "SendMail", "Misc", 
    new { id = Model.ImageID }, null /*htmlAttributes*/) %>

请记住,尽管 text 参数将在输出中进行编码,因此使用该参数发送 HTML 是没有意义的。
最好使用 CSS 来设置 HTML 的样式。

例如:

a.myLink {font-size: 0.5em;color:yellow;}

并设置锚元素的类属性:

<%=Html.ActionLink("Report", "SendMail", "Misc", 
    new { id = Model.ImageID }, new { @class = "myLink" }) %>

First of all, you missed the = after the <%. That's why it didn't output anything.

Also, the way you passed routeValues parameter was wrong.

It should be :

<%=Html.ActionLink("<font size=\"1\">Report</font>", "SendMail", "Misc", 
    new { id = Model.ImageID }, null /*htmlAttributes*/) %>

Please keep in mind though the text argument will be encoded in the output, so there's no point in sending HTML with that argument.
It's best to use CSS to style your HTML.

For example :

a.myLink {font-size: 0.5em;color:yellow;}

And to set the class attribute for the anchor element :

<%=Html.ActionLink("Report", "SendMail", "Misc", 
    new { id = Model.ImageID }, new { @class = "myLink" }) %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文