有没有办法在新窗口中打开控制器操作的视图?
public ActionResult NewWindow()
{
// some code
return View();
}
如何在新的浏览器选项卡中打开NewWindow.cshtml视图?
我知道如何从视图中的链接进行操作 - 这不是问题。有没有人想出一种方法从控制器动作中找到它?
答案 0 :(得分:70)
这不能在控制器本身内完成,而是从您的视图中完成。在我看来,你有两个选择:
使用“_blank”属性修饰链接(使用HTML帮助程序和直接HMTL语法的示例)
@Html.ActionLink("linkText", "Action", new {controller="Controller"}, new {target="_blank"})
<a href="@Url.Action("Action", "Controller")" target="_blank">Link Text</a>
使用Javascript打开新窗口
window.open("Link URL")
答案 1 :(得分:35)
您也可以在表单中使用Tommy的方法:
@using (Html.BeginForm("Action", "Controller", FormMethod.Get, new { target = "_blank" }))
{
//code
}
答案 2 :(得分:7)
你问的是错误的问题。代码隐藏(控制器)与前端的作用无关。事实上,这是MVC的优势 - 您将代码/概念与视图分开。
如果您希望在新窗口中打开操作,则指向该操作的链接需要告知浏览器在单击时打开新窗口。
一个伪示例:<a href="NewWindow" target="_new">Click Me</a>
这就是它的全部内容。设置指向该操作的链接目标。
答案 3 :(得分:3)
是的,你可以做一些棘手的工作来模拟你想要的东西:
1)通过ajax从视图中调用控制器。 2)返回您的视图
3)在$ .ajax请求的success
(或者error
!错误对我有用!)部分使用以下内容:
$("#imgPrint").click(function () {
$.ajax({
url: ...,
type: 'POST', dataType: 'json',
data: $("#frm").serialize(),
success: function (data, textStatus, jqXHR) {
//Here it is:
//Gets the model state
var isValid = '@Html.Raw(Json.Encode(ViewData.ModelState.IsValid))';
// checks that model is valid
if (isValid == 'true') {
//open new tab or window - according to configs of browser
var w = window.open();
//put what controller gave in the new tab or win
$(w.document.body).html(jqXHR.responseText);
}
$("#imgSpinner1").hide();
},
error: function (jqXHR, textStatus, errorThrown) {
// And here it is for error section.
//Pay attention to different order of
//parameters of success and error sections!
var isValid = '@Html.Raw(Json.Encode(ViewData.ModelState.IsValid))';
if (isValid == 'true') {
var w = window.open();
$(w.document.body).html(jqXHR.responseText);
}
$("#imgSpinner1").hide();
},
beforeSend: function () { $("#imgSpinner1").show(); },
complete: function () { $("#imgSpinner1").hide(); }
});
});
答案 4 :(得分:1)
您可以使用以下方式
public ActionResult NewWindow()
{
return Content("<script>window.open('{url}','_blank')</script>");
}
答案 5 :(得分:0)
@Html.ActionLink("linkText", "Action", new {controller="Controller"}, new {target="_blank",@class="edit"})
script below will open the action view url in a new window
<script type="text/javascript">
$(function (){
$('a.edit').click(function () {
var url = $(this).attr('href');
window.open(url, "popupWindow", "width=600,height=800,scrollbars=yes");
});
return false;
});
</script>
答案 6 :(得分:0)
假设您的“主目录”文件夹中有“ NewWindow.cshtml”,我已经看到了可以执行以下操作的地方:
string url = "/Home/NewWindow";
return JavaScript(string.Format("window.open('{0}', '_blank', 'left=100,top=100,width=500,height=500,toolbar=no,resizable=no,scrollable=yes');", url));
或
return Content("/Home/NewWindow");
如果只想在标签中打开视图,则可以使用JavaScript click事件来呈现部分视图。这将是NewWindow.cshtml的控制器方法:
public ActionResult DisplayNewWindow(NewWindowModel nwm) {
// build model list based on its properties & values
nwm.Name = "John Doe";
nwm.Address = "123 Main Street";
return PartialView("NewWindow", nwm);
}
您在页面上的标记正在被调用,就像这样:
<input type="button" id="btnNewWin" value="Open Window" />
<div id="newWinResults" />
还有JavaScript(需要jQuery):
var url = '@Url.Action("NewWindow", "Home")';
$('btnNewWin').on('click', function() {
var model = "{ 'Name': 'Jane Doe', 'Address': '555 Main Street' }"; // you must build your JSON you intend to pass into the "NewWindowModel" manually
$('#newWinResults').load(url, model); // may need to do JSON.stringify(model)
});
请注意,此JSON将覆盖上面的C#函数中的内容。我在这里使用它只是为了演示如何仅可以硬编码值。
答案 7 :(得分:0)
我在控制器中分配了javascript:
value1
在我看来:
numericInput
这会打开一个带有链接的新标签,然后转到该标签。
有趣的是,它在本地运行时启用了弹出窗口阻止程序,但在服务器上似乎可以正常工作。