日期:2014-05-20  浏览次数:20402 次

多个DropDownList查询的问题
有3个DropDownList,学历,英语,计算机,还有一个BUTTON 确认 

如何实现查询其中1个或2个条件 

这个SQL 语句应该怎么动态的搜索条件呢 

各位大神 教教我吧



------解决方案--------------------
C# code


StringBuilder strWhere = new StringBuilder();
//你原来的Sql语句
如:strWhere.Append("SELECT * FROM TABLE_NAME WHERE 1=1 ");

//然后添加条件,添加前需要判断下
如: if(!string.IsNullOrEmpty(DropDownList_英语.SelectValue))
        strWhere.Append("AND 英语_Column='" + DropDownList_英语.SelectValue + "' ");
     if(!string.IsNullOrEmpty(DropDownList_计算机.SelectValue))
        strWhere.Append("AND 计算机_Column='" + DropDownList_计算机.SelectValue + "' ");