public ActionResult NewWindow() { // some code return View(); }
如何获取NewWindow.cshtml视图在新的浏览器选项卡中打开?
我知道如何从视图中的链接做 – 这不是问题。有没有人想出一个方法来做它从控制器的行动?
>使用“_blank”属性装饰您的链接(使用HTML帮助和直接HMTL语法的示例)
> @ Html.ActionLink(“linkText”,“Action”,new {controller =“Controller”},new {target =“_ blank”})>< a href =“@ Url.Action(”Action“,”Controller“)”target =“_ blank”>链接文字< / a>
>使用Javascript打开一个新窗口
window.open(“链接网址”)