我通过以下代码在新选项卡中打开我的页面:
String js = "window.open('" + page + "'" + ", '_blank');";
ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "Open", js, true);
但Google chrome
它会在新窗口而不是新标签中打开!
如何让它在新标签页中打开甚至最大化?
我通过以下代码在新选项卡中打开我的页面:
String js = "window.open('" + page + "'" + ", '_blank');";
ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "Open", js, true);
但Google chrome
它会在新窗口而不是新标签中打开!
如何让它在新标签页中打开甚至最大化?