1

我想将网页显示为模式弹出窗口。

Response.Write("<script type='text/javascript'>detailedresults=window.showModalDialog('NewFile.aspx','Data','left=(screen.width) ? (screen.width - 800) / 2 : 0,top=(screen.height) ? (screen.height - 700) / 2 : 0,width=1000,  height=500, toolbar=no, menubar=no, titlebar=no, location=no, addressbar=no');</script>");

在使用上面的代码时。我能够将网页显示为模式弹出窗口,但问题是它还打开了第三个窗口,该窗口是同名网页而不是模式弹出窗口。

请帮我解决这个问题。提前致谢。

4

1 回答 1

0

而不是将脚本写到响应中,RegisterStartupScript而是使用:

Page.ClientScript.RegisterStartupScript(this.GetType(),
                "detailedresults",
                "<script type='text/javascript'>detailedresults=window.showModalDialog('NewFile.aspx','Data','left=(screen.width) ? (screen.width - 800) / 2 : 0,top=(screen.height) ? (screen.height - 700) / 2 : 0,width=1000,  height=500, toolbar=no, menubar=no, titlebar=no, location=no, addressbar=no');</script>");
于 2014-03-24T12:16:11.643 回答