I would like users to be able to see the corresponding URL for an anchor tag generated by Html.ActionLink() when they hover over the link. This is done by setting the title attribute but where I'm stuck is figuring out how to get that value:
@Html.ActionLink(@testrun.Name, "Download", "Trx",
new { path = @testrun.TrxPath }, new { title = ??)
How can I specify the URL that ActionLink is going to generate? I could hardcode something I guess but that violates DRY.
new { title = Url.Action("Download", "Trx") }
for each link. – Trichome