判断DataTable中的空值(字段为数值型)?
判断是否为空值
if (js2.Tables[0].Rows[i].IsNull(j))
或者
if (js2.Tables[0].Rows[i][j]==DBNull.Value)
js2是一个DataSet,如果是一个DataTable就直接判断它的Rows即可。
加上判断数据类型为数值型
if (!( js2.Tables[0].Rows[i][j]) is DBNULL) && (System.Convert.ToSingle(js2.Tables[0].Rows[i][j])>0) )
{
//...
}