0

我想打开新网页例如https://www.google.md/ 我想使用@Html.ActionLink 如果可能的话,有人可以帮助我吗?

4

2 回答 2

5

如果可能的话,我想使用@Html.ActionLink 来做到这一点

Html.ActionLink应该用于属于同一应用程序的内部 url,因为它取决于路由。

如果要生成指向外部 url 的链接,可以使用普通的锚元素:

<a href="https://www.google.md/">Go to google</a>
于 2012-07-06T07:09:44.923 回答
2

如果您想在新的浏览器页面中打开它,也可以使用target="_blank"

<a href="https://www.google.md/" target="_blank">Google!</a>

但是,如果您只想从您的代码中打开另一个具有某些价值的网站的 url,您可以这样做:

<a href="https://www.google.md/index.php?somevalue="+@myvalue+" target="_blank">Google!</a>
于 2012-07-06T07:15:38.180 回答