Based on an answer provided on :
Absolute (external) URLs with Html.ActionLink
I have the following ActionLink:
<li>@Html.ActionLink("ExternalLink", "http://google.com")</li>
But I still get a 'resource cannot be found error', with :
Requested URL: /Home/http:/google.com
which is tagging /Home onto the absolute path.
UPDATE: I was hoping to wire up an External URL (my own, outside the Web project) and hook up an ActionResult in the controller.. ah, is it because I'm using the HomeController, when I should be using a new one?
What am I doing wrong?
Any help, much appreciated.
Joe