我希望在Message Box show
之后阻止数据插入到数据库
int numberOfRecords = Convert.ToInt32(qotext.Text);
if (numberOfRecords == 9999)
{
MessageBox.Show("try other value", "Error",
MessageBoxButtons.OK, MessageBoxIcon.Error);
}
答案 0 :(得分:0)
您需要以下内容:
if (conditionToNotInsert) {
MessageBox.Show(...);
} else {
InsertStuffIntoDb();
}
只有在else
的条件不成立时才会执行if
块。