<%: Html.ActionLink("Share Me", "Index", "Mall", new { username = Model.Username }, null)%>
results as expected according to mapped routes:
<a href="/Mall/Username">Share Me</a>
I however need it to not say Share Me but to show the absolute URL, as well as use the absolute URL as the href:
<a href="http://www.url.com/Mall/Username">http://www.url.com/Mall/Username</a>
I feel this isn't a hard task, but being very green in tackling MVC I'm having a hard time figuring it out.