[CODE]string selectStr = "select ID,Name from table1 order by Name";
DataSet ds = null;
ds = getDataSet(selectStr); //getDataSet()是自己写的一个返回数据集的方法.
this.DropDownList1.DataSource = ds;
this.DropDownList1.DataTextField = "Name";
this.DropDownList1.DataValueField = "ID";
this.DropDownList1.DataBind();[/CODE]
这个就是把查询出来的Name字段里的数据显示出来我们可以看到.当我们用this.DropDownList1.SelectedValue.ToString()时就是取的你所选取的(DropDownList1中)项所对应的 ID 值.