修改时,从数据库中查出来的值如何设置到select控件中

在asp.net中,从数据库中查出来的值如何设置到html select控件中,此控件为 <select name="ku" id="Select1" runat="server">
<option value="1" >IN1</option>
<option value="2" >IN2</option>
<option value="3" >IN3</option>
</select>
如果在*.aspx.cs页面查出来的值为3,要怎么才能使aspx中显示值为3的选中项。
如果是<asp:DropDownList ID="DropDownList1" runat="server">
</asp:DropDownList>又要怎么办!
这个问题困扰我一段时间了,请大家能尽快给我答案,十分谢谢!
主要想问html控件的select!

DropDownList1的绑定数据
this.DropDownList1.DataSource = 数据源
this.DropDownList1.DataValueField = 只绑定字段
this.DropDownList1.DataTextField = "显示绑定字段";
this.DropDownList1.DataBind();
this.DropDownList1.Items.Insert(0, new ListItem("Select", "/"));

Programme.SelectedValue 这个是选定的值 还有id什么的 text什么的
温馨提示:内容为网友见解,仅供参考
第1个回答  2008-11-26
一楼的回答正确!
相似回答
大家正在搜