提交后获得确认答案

本文关键字:确认 答案 提交 | 更新日期: 2023-09-27 18:00:02

在我的C#代码中,我使用以下代码向用户显示了一个确认框:

string confirmMsg = "All the cause data will be permanently removed. Are you sure you want    to continue";
ClientScript.RegisterStartupScript(Page.GetType(), "TWCL Issue Mgmt System", "confirm('" + confirmMsg + "');", true);

我正试图将答案(YES或No)转换为布尔值或其他变量,以便根据给出的答案执行其他代码。所以我想要这样的东西:

bool x = ClientScript.RegisterStartupScript(Page.GetType(), "TWCL Issue Mgmt System", "confirm('" + confirmMsg + "');", true);
if(x)
{
 /*Exceute the rest of the code here*/
}
else
{
  /*do postback*/
}

关于如何从确认框中获得是/否答案,有什么想法吗?

提交后获得确认答案

在表单上创建一个隐藏字段。用一些javascript将问题的答案写在隐藏字段中。读取代码后面隐藏字段的值。

您正在注册的启动脚本将在显示网页时运行,此时用户还没有机会与之交互。此时的确认提示可能会令人困惑。

更常见的是使用正在进行回发的按钮的OnClientClick属性:

<asp:Button ...
   OnClientClick="return confirm('Are you sure?');" 
/>

从而只有当用户试图发帖时才显示确认提示。