你可以把查出来的结果放到一个datatable或者dataset里面,然后显示的时候就用repeater,直接用repeater.datasource=dataTable;然后repeater.DataBind()
知道winform的
string str;
str="select * from table where 1=1";
if (comobox1.text !="请选择产品那类型")
{str+=", 产品类型=‘ “ + comobox1.text + ” ’ ";}
if (comobox2.text !="请选择合约号")
{str+=", 合约号=‘ “ + comobox2.text + ” ’ ";}
.......