我在 UpdatePanel_2 中有一个下拉列表,当在 UpdatePanel_1 中单击 Button_1 时会填充它,
填充 DropDownList 时,它会删除我的“选择”项,不知道为什么,
我的下拉列表标记是,
<asp:DropDownList id="drop1" runat="server" >
<asp:ListItem Text=" Select " />
</asp:DropDownList>
这就是我填充它的方式,
using (SqlDataSource sqlds = new SqlDataSource(ConnectionString(), SelectCommand()))
{
drop1.DataSource = sqlds;
drop1.DataTextField = "UserName";
drop1.DataBind();
}