確認答案在我的C#代碼,我一直在使用下面的代碼給出一個確認框給用戶一些其他變量,以便我可以根據給出的答案執行其他代碼。所以,我想是這樣的:獲取在提交
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*/
}
如何獲得YES /從確認框NO回答任何想法?
我嘗試了這種方法,首先添加一個名爲「hdnConfirm」的隱藏字段。我用這段代碼嘗試了這種方法(無效): string confirmMsg =「所有原因數據將被永久刪除。你確定要繼續嗎? (),「true,true);}}} ClientScript.RegisterStartupScript(Page.GetType(),」TWCL Issue Mgmt System「,」document.getElementById('MainContent_hdnConfirm')。Value = confirm('「+ confirmMsg +''); 你能告訴我一個你正在說的代碼嗎? – user2030579 2013-02-18 16:20:41
嘗試類似於hdnConfirm.value =確認(「.....」); – 2013-02-18 16:23:10