if (dt.Rows[0]["PM"] != null)
{
this.cbk..Checked = true;
}
else
{
this.cbk.Checked = false;
}
根据数据库字段是否为空值做出判断,可是,这个代码一直默认为有值来做的,请问怎么做
if (dt.Rows[0]["PM"] != null)
{
this.cbk..Checked = true;
}
else
{
this.cbk.Checked = false;
}
根据数据库字段是否为空值做出判断,可是,这个代码一直默认为有值来做的,请问怎么做
if (dt.Rows[0]["PM"] != null&&!"".equals(dt.Rows[0]["PM"] ))
{
this.cbk..Checked = true;
}
else
{
this.cbk.Checked = false;
}
这样写就可以了,值虽然是空值但是是空字符串 不是null所以还要判断是不是空字符串