作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我希望用户将鼠标悬停在链接上时能够看到 Html.ActionLink() 生成的 anchor 标记的相应 URL。这是通过设置 title 属性来完成的,但我遇到的问题是弄清楚如何获取该值:
@Html.ActionLink(@testrun.Name, "Download", "Trx",
new { path = @testrun.TrxPath }, new { title = ??)
如何指定 ActionLink 将要生成的 URL?我可以硬编码一些我猜的东西,但这违反了 DRY .
最佳答案
您可以使用 Url.Action() 来生成链接,或者您可以像这样创建自定义帮助器方法:
public static class HtmlHelpers {
public static MvcHtmlString ActionLinkWithTitle(this HtmlHelper helper,
string linkText,
string actionName,
object routeValues) {
return helper.ActionLink(linkText, actionName, routeValues,
new {title = Url.Action(linkText, actionName, routevalues )
}
}
现在基本上你只需要像这样调用你的新 ActionLinkHelper
<%= Html.ActionLinkWithTitle(@testrun.Name, "Download", "Trx",
new { path = @testrun.TrxPath }) %>
关于c# - 如何将 ASP.NET MVC Html.ActionLink 的标题属性设置为生成的 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4504505/
我是一名优秀的程序员,十分优秀!