C# DropDownList绑定数据与清空

C# DropDownList绑定数据与清空1.绑定DataSetSqlConnectionconn=newSqlConnection(“server=.;uid=sa;pwd=;database=”);stringsql=”select类型表.id,type_namefrom类型表,申请表where申请表.type_id=类型表.id”;DataSetds=newDataSet();SqlDataAd

1.绑定DataSet
SqlConnection conn=new SqlConnection("server=.;uid=sa;pwd=;database= ");
string sql="select 类型表.id,type_name from 类型表,申请表 where 申请表.type_id=类型表.id";
DataSet ds=new DataSet();
SqlDataAdapter da=new SqlDataAdapter(sql,conn);
da.fill(ds,"类型表_申请表");
this.DropDownList1.DataSource=ds.Tables[0].DefaultView;
this.DropDownList1.DataTextField="type_name";
this.DropDownList1.DataValueField="id";
this.DropDownList1.DataBind();
//且添加一个默认值
ListItem item = new ListItem();
item.Text = "请选择";
item.Value = "0";
DropDownList1.Items.Insert(0,item);
 
3.清空
this.dropdownlist.items.clear();

今天的文章C# DropDownList绑定数据与清空分享到此就结束了,感谢您的阅读。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/12138.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注