gpt4 book ai didi

c# - 面临 ShowModalDialog 问题

转载 作者:行者123 更新时间:2023-11-28 08:24:18 28 4
gpt4 key购买 nike

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

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>");

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

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

最佳答案

不要将脚本写入响应,而是使用 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>");

关于c# - 面临 ShowModalDialog 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22607386/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com