我想打开例如https://www.google.md/的新网页 如果有可能,我想使用@ Html.ActionLink这样做,有人可以帮助我吗?
答案 0 :(得分:5)
如果可能的话,我想使用@ Html.ActionLink
Html.ActionLink
应该用于属于同一应用程序的内部网址,因为它依赖于路由。
如果要生成指向外部网址的链接,可以使用普通的锚元素:
<a href="https://www.google.md/">Go to google</a>
答案 1 :(得分:2)
如果您想在新的浏览器页面中打开它,请同时使用target="_blank"
<a href="https://www.google.md/" target="_blank">Google!</a>
但是如果你只是想打开另一个网站的网址,你的代码有一些价值,你就可以这样做:
<a href="https://www.google.md/index.php?somevalue="+@myvalue+" target="_blank">Google!</a>