我正在尝试从代码中打开一个新页面。为此,我在按钮点击事件
上使用了以下代码string pageURL = UIConstants.Url.PrintUserBRCs + "?" + UIConstants.ReportType + "=" + UIConstants.DetailReport;
string script = string.Format("window.open('{0}', null, 'height=600, width=800, status=yes, location=yes, menubar=yes, resizable=yes, scrollbars=yes, status=yes, toolbar=yes, titlebar=yes')", pageURL);
Page.ClientScript.RegisterClientScriptBlock(GetType(), "LaunchTemplate", script, true);
新页面正常打开,但问题是新页面在后台显示,而旧页面显示在顶部。
我需要显示在上一页顶部打开的新页面。 我怎么能这样做。
提前致谢。
答案 0 :(得分:2)
您可以像这样使用focus()
:
string script = string.Format("var newWindow = window.open('{0}', null, 'height=600, width=800, status=yes, location=yes, menubar=yes, resizable=yes, scrollbars=yes, status=yes, toolbar=yes, titlebar=yes');"
+ " newWindow.focus();", pageURL);