返回首页

您好,

在我的asp.net应用程序,我需要显示两个不同的弹出窗口,其中包含两个不同的报告需要打印输出。{BR​​}
因此,而我需要显示两个弹出在1 time.Here是我的代码用于显示弹出。我试图运行相同的脚本两次(不同Page.aspx),但最后只有一个弹出所示。

string url = "Billview.aspx";

string fullURL = "window.open('" + url + "', '_blank', 'height=350,width=475,status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,titlebar=no' );";

ScriptManager.RegisterStartupScript(this, typeof(string), "OPEN_WINDOW", fullURL, true);
| jkarthick1989

回答