gpt4 book ai didi

javascript - 如何在单击 Asp.Net 按钮单击事件时显示弹出窗口

转载 作者:行者123 更新时间:2023-11-30 18:25:36 25 4
gpt4 key购买 nike

我有一个弹出窗口,向用户显示一条消息,表明他们的信息已提交。弹出 div 的 id NewCustomerStatusPopUp,我希望在信息已成功插入数据库时​​显示此弹出窗口,那么我该怎么做提交所有信息后,调用 javascript 函数显示弹出窗口。任何人都可以让我知道我该怎么做。这是我的弹出窗口

<div id="NewCustomerStatusPopUp">
<asp:Label ID="lblStatus" Text="" runat="server"/>
</div>

CSS:

#NewCustomerStatusPopUp
{
position: fixed;
width: 300px;
height: 250px;
top: 50%;
left: 50%;
margin-left:-255px;
margin-top:-150px;
border: 10px solid #9cc3f7;
background-color:White;
padding: 10px;
z-index: 102;
font-family:Verdana;
font-size: 10pt;
border-radius:10px;
-webkit-border-radius:20px;
-moz-border-radius:20px;

}

非常感谢任何帮助。

谢谢。

最佳答案

要从服务器调用 javascript 函数,您可以使用 RegisterStartipScript:
在你插入查询后写这段代码

ClientScript.RegisterStartupScript(GetType(), "id", "callMyJSFunction()", true);

<script type="text/javascript">
function callMyJSFunction()
{
alert("Record inserted sucessfully.");
}

关于javascript - 如何在单击 Asp.Net 按钮单击事件时显示弹出窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10926205/

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