我正在检查我的应用程序与不同浏览器的兼容性,并且遇到了一些浏览器无法在新窗口中打开表单的问题。
我用来这样做的脚本:
string theScript= "<script>window.open('" + fileLocation + "','_blank','height=400,width=400,scrollbars=Yes,resizable=Yes')</script>";
ScriptManager.RegisterStartupScript(this.Page, this.Page.GetType(), "blah", theScript, false);
有没有办法解决它?提前致谢。