我想将网页显示为模式弹出窗口。
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>");
使用上面的代码。我可以将网页显示为模态弹出窗口,但问题是它还会打开第三个窗口,这是一个同名网页而不是模态弹出窗口。
请帮我解决这个问题。在此先感谢。
答案 0 :(得分: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>");