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?