1

ビューでasp.net mvcを操作します。新しいタブで外部 Web ページにリダイレクトする方法は?

<%= 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

自分の Web サイト内にリンクしていないため、これをコントローラー アクションに渡さないでください。マークアップを手動で記述するだけです。再利用する必要がある場合は、セクションまたは部分ビューに入れます。

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