1

在视图中使用 asp.net mvc。如何在新标签页中重定向到外部网页?

<%= Html.ActionLink("Paypal", "HowItWorksRedirect", null, new { @class = "Paypal" })%>

 public ActionResult HowItWorksRedirect()
        {
            return Redirect("https://www.paypal-deutschland.de/sicherheit/schutzprogramme.html");
        }
4

1 回答 1

2

您不会将此传递给控制器​​操作,因为您没有链接到您自己的网站内。只需手动编写标记。如果你需要重复使用它,把它放在一个部分或部分视图中:

<a href="https://www.paypal-deutschland.de/sicherheit/schutzprogramme.html" target="_blank" class="Paypal">Paypal</a>
于 2012-07-18T23:07:43.950 回答