嗨,我无法弄清楚如何在没有任何浏览器控件和特定尺寸的情况下打开一个新的普通浏览器窗口。我尝试了以下方法,但它不起作用,更准确地说,它仍然会打开一个带有控件的常规浏览器窗口。
@Html.ActionLink("New Window", "Index", new {Controller="controller"}, new { target= "_blank, toolbar=0, location=0, menubar=0 " })
嗨,我无法弄清楚如何在没有任何浏览器控件和特定尺寸的情况下打开一个新的普通浏览器窗口。我尝试了以下方法,但它不起作用,更准确地说,它仍然会打开一个带有控件的常规浏览器窗口。
@Html.ActionLink("New Window", "Index", new {Controller="controller"}, new { target= "_blank, toolbar=0, location=0, menubar=0 " })
我想说你必须使用 JavaScript 才能这样做:
<script>
function openInNewWindowWithSettings()
{
window.open('@Url.Content("~/YourController/YourPage")',target = '_blank', width = '1000px', height = '800px');
//options:
//fullscreen = 'yes',
//height = '800px',
//left = '20px',
//location = 'no', //address field
//menubar = 'no',
//resizeable = 'yes',
//scrollbars = 'yes',
//status = 'yes', //status bar
//titlebar = 'yes',
//toolbar = 'yes',
//top = '20px',
//width = '1000px'
}
</script>
<a href='javascript:openInNewWindowWithSettings();'>Link that opens in new window</a>
然后做一个
return Redirect(_linkToYourUrl);
在您的 MVC 控制器中。
或者只是在上面的 HTML 链接中插入 URL。