I have an application here with a mix of webform and mvc. I specify the routing as below
routes.Add("AspxRoute", new Route("Upload/New", new WebFormRouteHandler<Page>("~/Uploads.aspx"))); ...
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????
I have the following:
<a href="/Product/Overview">Overview</a> <a href="/Product/Review">Review</a>
I disabled my address link with the following:
<a href="#" onclick="return false;" rel="nofollow">Overview</a>