Writing @Url.Content("~/Something/Something.html") in razor renders /AppFolder/Something/Something.html

is there a way to render the full url like http://www.something.com/AppFolder/Something/Something.html without hacks? (like storing the protocol and domain in the AppConfig, and concatenate the string to it)

is there a helper like @Url.FullPath("~/asdf/asdf") or similar?

link|improve this question

Did you find an answer for this? I'm looking for the same thing! Any help appreciated. – ETFairfax Oct 11 '11 at 18:50
feedback

2 Answers

up vote 0 down vote accepted

The @Url.RouteURL() does not quiet answer this question. It does work for named routes but falls short for arbitrary virtual paths. Here is quick helper method that generates full outbound url. You can create overloads for various schemes (http[s]) depending on the degree of control desired.

public static class UrlHelperExtension
{
    public static string ContentFullPath(this UrlHelper url,string virtualPath)
    {
        var result = string.Empty;
        Uri requestUrl = url.RequestContext.HttpContext.Request.Url;

        result = string.Format("{0}://{1}{2}",
                               requestUrl.Scheme,
                               requestUrl.Authority, 
                               VirtualPathUtility.ToAbsolute(virtualPath));
        return result;
    }
}
link|improve this answer
That was an old question! You might get a badge for this :D – SoonDead Nov 9 '11 at 17:18
feedback

See this blog post for the answer.

Basically, all you need to do it include the protocol parameter e.g.

Url.Action("About", "Home", null, "http")

Cheers,

ETFairfax

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.