So Html.ActionLink("Report", "SendMail", "Misc", new { id = Model.ImageID }, null)
will generate a nicely formatted link.
<a href="http://localhost:3224/Misc/SendMail/5">Send Mail</a>
How can I generate just the URL of the link, short of parsing the output of Html.ActionLink?