在我的 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);
我正在尝试将答案(是或否)转换为布尔值或其他变量,以便我可以根据给出的答案执行其他代码。所以我想要这样的东西:
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*/
}
关于如何从确认框中获得是/否答案的任何想法?