lcg19862008-07-25TA获得超过3309个赞关注SqlDataAdapterda=newSqlDataAdapter("select*fromCustomers","DataSource=.;InitialCatalog=Northwind;IntegratedSecurity=True");DataSetds=newDataSet();da.Fill(ds);DataTabledt=ds.Tables[0];comboBox1.DataSource=dt;comboBox1.DisplayMember="city";//要显示的字段名//如果是Web程序的话,加上comboBox1.DataBind();