else if (Result == 1)
{
ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "Test", "return confirm('Are you sure you want to delete? This action cannot be undone.')", true);
FSI.DeleteINsertData(ID.ToString(), No.ToString());
}
コードビハインドでjsの確認があります。ユーザーが「はい」をクリックしたときに処理を続行したいのですが、それ以外の場合は、ユーザーが「いいえ」をクリックして何もしません。それはelse ifステートメントにあります。回答ありがとうございます。