gpt4 book ai didi

c# - Ajax ModalPopUp Window 根据特定条件

转载 作者:太空宇宙 更新时间:2023-11-03 20:08:19 25 4
gpt4 key购买 nike

我的页面中有一个 Ajax ModalPopupExtender。在当前使用 TargetControlId 的按钮上单击我正在显示弹出窗口。我的需要是当我单击按钮时要检查数据库中的一些条件。如果条件满足我想显示弹出窗口。否则不需要弹出窗口。我该怎么做?

 <ajaxToolkit:ModalPopupExtender CancelControlID="btnCancel" BackgroundCssClass="modalBackground" runat="server" ID="PopupExtender"  TargetControlID="btn"  PopupControlID="Panel1"></ajaxToolkit:ModalPopupExtender>

最佳答案

protected void ButtonSave_Click(object sender, EventArgs e)
{
if (MyCondition == true)
{
modalPopUpConfirmation.Show();
}
else
{
Label1.Text = "The condition was false, so no modal popup!";
}
}

关于c# - Ajax ModalPopUp Window 根据特定条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21570354/

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