2012-07-18 80 views
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"); 
     } 

回答

2

您不會將此傳遞給控制器​​操作,因爲您沒有鏈接到您自己的網站中。只需手動編寫標記。如果您需要重新使用它,請將其放在一個部分或部分視圖中:

<a href="https://www.paypal-deutschland.de/sicherheit/schutzprogramme.html" target="_blank" class="Paypal">Paypal</a>