如何操作 Html.ActionLink 以显示到另一个控制器的链接?
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您错过了
<%
之后的=
。这就是为什么它没有输出任何内容。另外,您传递
routeValues
参数的方式是错误的。它应该是:
请记住,尽管
text
参数将在输出中进行编码,因此使用该参数发送 HTML 是没有意义的。最好使用 CSS 来设置 HTML 的样式。
例如:
并设置锚元素的类属性:
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 :
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 :
And to set the class attribute for the anchor element :