cuong1808
cuong1808

Reputation: 13

how to create link to different website in mvc

I want to create link to www.google.com with use < a href = "www.google.com >link to google< /a >. But I aready get link http://mysite/www.google.com Anyone can help me????

Upvotes: 1

Views: 3381

Answers (3)

Andrew Barber
Andrew Barber

Reputation: 40150

This has nothing to do with MVC. When linking externally, you must include the full url, including the protocol.

http://www.google.com for example.

Upvotes: 1

ek_ny
ek_ny

Reputation: 10243

shouldn't you just prefix the href with "http://" ?

Upvotes: 0

Craig Stuntz
Craig Stuntz

Reputation: 126547

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

Upvotes: 6

Related Questions