请问如何在vs2010制作的.net网页上查询sql数据库数据

2024-12-28 03:31:55
推荐回答(2个)
回答1:

你可以把查出来的结果放到一个datatable或者dataset里面,然后显示的时候就用repeater,直接用repeater.datasource=dataTable;然后repeater.DataBind()

回答2:

知道winform的
string str;
str="select * from table where 1=1";
if (comobox1.text !="请选择产品那类型")
{str+=", 产品类型=‘ “ + comobox1.text + ” ’ ";}
if (comobox2.text !="请选择合约号")
{str+=", 合约号=‘ “ + comobox2.text + ” ’ ";}
.......