string strCmd="select * from tablename where 1=1";
if (!string.IsNullOrEmpty(职务级别.Text))
{
strCmd += " and 职务级别='"+职务级别.Text+"'";
}
if (!string.IsNullOrEmpty(职务级别.Text))
{
strCmd += " and 学历层次='"+学历层次.Text+"'";
}
if (!string.IsNullOrEmpty(职务级别.Text))
{
strCmd += " and 政治面貌='"+政治面貌.Text+"'";
}
------解决方案-------------------- 数据量不大,可以用DataView过滤
------解决方案--------------------