gpt4 book ai didi

c# - 如何显示消息框并从 aspx.cs 获得确认是或否

转载 作者:行者123 更新时间:2023-11-29 17:31:29 25 4
gpt4 key购买 nike

我需要显示一个消息框以确认是否删除项目,但不确定如果我使用 javascript 警报该怎么做,我将如何获得确认?

最佳答案

您可以使用 confirm功能:

if (confirm('Are you sure you want to delete this item?')) {
// TODO : the user confirmed
}

当您使用 ASP.NET 标记您的问题时:

<asp:LinkButton 
ID="DeleteButton"
runat="server"
CommandName="Delete"
Text="Delete"
OnClientClick="return confirm('Are you sure you want to delete this item?');"
/>

关于c# - 如何显示消息框并从 aspx.cs 获得确认是或否,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3486645/

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