如何在服务器端触发 AJAX 确认按钮以及如果“是”则触发然后运行服务器端代码

发布于 2024-12-02 06:51:32 字数 176 浏览 0 评论 0原文

我是 ASP.NET 新手,不知道如何执行以下操作。我正在服务器端代码中保存一条记录。如果记录是新的(添加与编辑),那么我想问用户一个问题,他们会回答“是”或“否”。如果是,那么我希望执行服务器端代码。

我想我会使用 AJAX 确认按钮,但我不知道如何从服务器端代码调用它,也不知道如何在用户选择“是”时执行服务器端代码。

I am new to ASP.NET and cannot figure out how to do the following. I am saving a record in server-side code. If the record is new (adding vs. editing), then I want to ask a user a question where they will respond with a Yes or No. If Yes then I want to have server-side code executed.

I think I would use the AJAX confirmbutton but I don't know how to call it from server-side code and how to have server-side code execute if the user chooses Yes.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如痴如狂 2024-12-09 06:51:32

尝试一下这样的事情:

<asp:Button ID="Button1" runat="server" OnClientClick="return confirm('Are you sure?');" OnClick="Button1_Click" />

Give something like this a shot:

<asp:Button ID="Button1" runat="server" OnClientClick="return confirm('Are you sure?');" OnClick="Button1_Click" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文