Lempkin
Lempkin

Reputation: 1588

MVC 4 External link

I would like to display an external link on my website, but even with :

<a href="www.google.com">google</a>

I get the url prefixed with my website's url... I don't need any helpers. I've googled that and people seems to say that when you don't use a helper, just a basic <a> it should works, but it doesn't work on mine ^^ Any idea?

Upvotes: 0

Views: 1511

Answers (1)

Nilesh Gajare
Nilesh Gajare

Reputation: 6398

Try this

<a href="http://www.google.com">google</a>

Upvotes: 3

Related Questions