gpt4 book ai didi

c# - 如何从 aspx.cs 页面切换确认消息框

转载 作者:行者123 更新时间:2023-12-02 20:48:39 24 4
gpt4 key购买 nike

我有一个搜索程序,它将从数据库中查找数据库。如果日期范围超过 3 周,我想提醒他们可能需要一段时间才能处理完数据库中的所有数据。我在 JavaScript 函数中有一个确认消息框。我想检查 aspx.cs 页面中的日期范围。如何根据该条件触发消息框?这是我的一些 html 代码的副本。我不知道如何接近检查站。

function warning() {            
var answer = confirm("The date range you have selected will return a substantial amount of data and will take some time to process.\n\nAre you sure you want to continue?");
if (answer)
return true;
else
return false;
}

最佳答案

单击按钮时会弹出继续的确认框

SearchButton.Attributes.Add("onclick", "javascript:return " + "confirm('" + 
"The date range you have selected will return a substantial amount of data and will take some time to process.\n\nAre you sure you want to continue?')");

关于c# - 如何从 aspx.cs 页面切换确认消息框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/335229/

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