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");
}