检查列值是空还是null时出错
本文关键字:null 出错 检查 | 更新日期: 2023-09-27 17:58:15
我正在尝试使用if条件检查列值["CellNumber"]
是否为emtpy。即使列单元格值不为空,它也会以消息框提示,而不是退出foreach loop
并更新数据。
private void btnUpdate_Click(object sender, EventArgs e)
{
da = new SqlDataAdapter("select * from Measurement", con);
SqlCommandBuilder cb = new SqlCommandBuilder(da);
foreach (DataGridViewRow row in dgv.Rows)
{
if (Convert.ToString(row.Cells["CellNumber"].Value) == "")
{
MessageBox.Show("Please enter cellnumber", "Missing Information");
return;
}
}
try
{
da.Update(ds, "Measurement");
}
catch (DBConcurrencyException ex)
{
MessageBox.Show(ex.Message);
}
请通过检查数据网格视图中的行数
DataGridView. If myDataGridView.Rows.Count == 0
如果它等于0,则它为空
尝试使用.EditedFormattedValue
if (string.IsNullOrWhiteSpace(row.Cells["CellNumber"].EditedFormattedValue.ToString()))
{
MessageBox.Show("Please enter cellnumber", "Missing Information");
return;
}
如果使用字符串"CellNumber",它不应该是int
吗?
if (Convert.ToString(row.Cells["CellNumber"].Value) == "")
if (string.IsNullOrEmpty(row.Cells["CellNumber"].Value))
{ Your Code }
尝试这种方式
if (row.Cells["CellNumber"].Value == null || string.IsNullOrEmpty(row.Cells["CellNumber"].Value.ToString()))
{
//rest
}
在验证之前调用dgv.CurrentRow.DataGridView.EndEdit();
保存所有单元格中的更改:)
private void btnUpdate_Click(object sender, EventArgs e)
{
dgv.CurrentRow.DataGridView.EndEdit();
dgv.EndEdit();
....