当列为NULL时,如何转义“数据为空”错误

时间:2016-07-26 06:30:05

标签: c# asp.net null

如何逃避此错误?我似乎无法使用IF ELSE子句,在我的查询中并非所有值都有值,因此其他列将具有“NULL”值。我想将“NULL”值显示为“0”。我该怎么做?

这是我的代码

while(readers.Read())
            {       
                b = readers.GetInt32(0);
                if (b == 0 || b == null)
                {
                    gvModal.Rows[y].Cells[6].Text = "0";
                }
            }

if语句是否正确?

0 个答案:

没有答案