阻止数据在消息框之后添加到数据库

时间:2017-09-16 07:14:02

标签: c#

我希望在Message Box show

之后

阻止数据插入到数据库

int numberOfRecords = Convert.ToInt32(qotext.Text);
if (numberOfRecords == 9999)
{
    MessageBox.Show("try other value", "Error",
    MessageBoxButtons.OK, MessageBoxIcon.Error);
}

1 个答案:

答案 0 :(得分:0)

您需要以下内容:

if (conditionToNotInsert) {
  MessageBox.Show(...);
} else {
  InsertStuffIntoDb();
}

只有在else的条件不成立时才会执行if块。