本文介绍了带响应的服务器端确认消息框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Hello All,

我想做什么

1.我点击一个按钮。

2.在btn_Click上执行一些代码事件。

3.在代码中有特定条件(如if(a == b)),打开确认消息框,除非我在确认框中单击确定/取消按钮,否则请勿继续操作。



我尝试过:



ClientScript.RegisterStartupScript(这个。 GetType(),script,确认('你想继续吗?');,真实);



但我怎样才能得到回应并执行进一步对是或否。

Hello All,
What I want to do this
1.I click a button.
2.Execute some code on btn_Click event.
3.At certain condition in code (like if(a==b)), open Confirmation message box, Do not proceed further unless and until I click Ok/Cancel button on confirmation box.

What I have tried:

ClientScript.RegisterStartupScript(this.GetType(), "script", "confirm('DO YOU WANT TO CONTINUE?');", true);

but how can i get response and execute further on either yes or no.

推荐答案



这篇关于带响应的服务器端确认消息框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-28 04:34
查看更多