我想从服务器端在 asp.net 中显示确认框:
我想从服务器端调用它,因为我必须从服务器端获取客户消息。我正在使用下面的代码
string str = "Are you sure, you want to Approve this Record?";
ClientScript.RegisterStartupScript(typeof(Page), "Popup", "return confirm('" + str + "');",true);
// More code ....
现在它正在显示弹出窗口,无论我单击什么,无论是“确定”还是“取消”,我的代码都在执行。
请让我知道当用户在确认框中选择“取消”时如何限制要执行的代码。