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?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Does this work for you

<%= Url.Content("~/Misc/SendMail/" + Model.ImageID) %>

Or try

<%= Url.Action( "SendMail", "Misc", new { id = Model.ImageID }) %>
link|improve this answer
This is good, but the app will run on various IIS boxes (some v6 and some v7), so it could potentially be /Misc.aspx/SendMail, in the case of IIS6. – AngryHacker Mar 21 '10 at 3:42
Url.Action might be your friend. – codemeit Mar 21 '10 at 4:35
Yep, thank you. This generates /Misc.aspx/SendMail/1, which is perfect. Now I need the stuff that comes before it. Any idea how to get the domain + virtual directory? – AngryHacker Mar 21 '10 at 4:44
feedback
<%= Url.Content("~"+Url.Action( "SendMail", "Misc", new { id = Model.ImageID })) %>

should work for you i think

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.